nixpkgs/pkgs/development/libraries/telepathy-gabble/default.nix
Eelco Dolstra 6609710409 * Get rid of many instances of "args: with args;", and other coding
guidelines violations.
* Updated libsamplerate to 0.1.7.

svn path=/nixpkgs/trunk/; revision=22782
2010-07-28 11:55:54 +00:00

19 lines
461 B
Nix

{ stdenv, fetchurl, pkgconfig, libxslt, telepathy_glib, loudmouth }:
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;
};
}