gamin added

svn path=/nixpkgs/trunk/; revision=10337
This commit is contained in:
Yury G. Kudryashov 2008-01-28 19:41:55 +00:00
parent b40d1ace2e
commit 08d38f7097
2 changed files with 17 additions and 0 deletions

View File

@ -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";
}

View File

@ -1892,6 +1892,11 @@ rec {
inherit fetchurl stdenv;
};
gamin = import ../development/libraries/gamin {
inherit fetchurl stdenv python pkgconfig;
inherit (gtkLibs) glib;
};
geos = import ../development/libraries/geos {
inherit fetchurl fetchsvn stdenv mkDerivationByConfiguration autoconf automake libtool swig which lib;
use_svn = stdenv.system == "x86_64-linux";