summary refs log tree commit diff
path: root/pkgs/development/libraries/telepathy-gabble/default.nix
blob: 44affecefd8867ed87abcd6dec0343091d630f1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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];
	configureFlags = "--enable-shared --disable-static";

	meta = {
		homepage = http://telepathy.freedesktop.org;
	};
}