summary refs log tree commit diff
path: root/pkgs/development/libraries/loudmouth/default.nix
blob: 87d613efd30ece5ee4f6c265b0182e2694084494 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
args: with args;
stdenv.mkDerivation rec {
	name = "loudmouth-1.3.3";

	src = fetchurl {
		url = "http://ftp.imendio.com/pub/imendio/loudmouth/src/${name}.tar.bz2";
		sha256 = "0f3xpp3pf5bxcp0kcmqa0g28vfl5gg8mj0hxhs2cx75hwgikd26x";
	};

	propagatedBuildInputs = [gnutls libidn glib];
	buildInputs = [pkgconfig];

	configureFlags = "--enable-shared --disable-static";
}