94d7d1fdbb
* Also a bunch of style cleanups (tabs, with args, ...). svn path=/nixpkgs/branches/stdenv-updates/; revision=15235
19 lines
409 B
Nix
19 lines
409 B
Nix
args: with args;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "telepathy-gabble-0.7.2";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/releases/telepathy-gabble/${name}.tar.gz";
|
|
sha256 = "0r1j475a5s2a4f10hybmavf4kf6nrnjnv091dpic5nl2asdilb7i";
|
|
};
|
|
|
|
propagatedBuildInputs = [telepathy_glib loudmouth];
|
|
|
|
buildInputs = [pkgconfig libxslt];
|
|
|
|
meta = {
|
|
homepage = http://telepathy.freedesktop.org;
|
|
};
|
|
}
|