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

	src = fetchurl {
		url = "http://www.gnome.org/~veillard/gamin/sources/${name}.tar.gz";
		sha256 = "0fgjfyr0nlkpdxj94a4qfm82wypljdyv1b6l56v7i9jdx0hcdqhr";
	};

	buildInputs = [python pkgconfig glib];
	configureFlags = "--enable-shared --disable-static --disable-debug";
}