about summary refs log tree commit diff
path: root/pkgs/development/libraries/gamin
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2008-01-28 19:41:55 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2008-01-28 19:41:55 +0000
commit08d38f70971785c9d60ce4c7d4ac76d70c0e8158 (patch)
tree9daa98c03a6d1fd44441eb24c2d775f8611301d9 /pkgs/development/libraries/gamin
parentb40d1ace2e18aba9424f3c05e8a67c5a759202ca (diff)
gamin added
svn path=/nixpkgs/trunk/; revision=10337
Diffstat (limited to 'pkgs/development/libraries/gamin')
-rw-r--r--pkgs/development/libraries/gamin/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gamin/default.nix b/pkgs/development/libraries/gamin/default.nix
new file mode 100644
index 0000000000000..a6ae0bacb22c0
--- /dev/null
+++ b/pkgs/development/libraries/gamin/default.nix
@@ -0,0 +1,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";
+}