nixpkgs/pkgs/development/libraries/telepathy-gabble/default.nix
Eelco Dolstra 94d7d1fdbb * Got rid of all --disable-static flags; they're redundant now.
* Also a bunch of style cleanups (tabs, with args, ...).

svn path=/nixpkgs/branches/stdenv-updates/; revision=15235
2009-04-21 23:18:09 +00:00

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;
};
}