3
0
Fork 0
forked from mirrors/nixpkgs

enchant library added

svn path=/nixpkgs/trunk/; revision=9455
This commit is contained in:
Yury G. Kudryashov 2007-10-12 20:27:15 +00:00
parent 2243a1f496
commit b167a71f29
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,10 @@
args: with args;
stdenv.mkDerivation {
name = "enchant-1.3.0";
src = fetchurl {
url = http://FIXME/enchant-1.3.0.tar.gz;
sha256 = "1vwqwsadnp4rf8wj7d4rglvszjzlcli0jyxh06h8inka1sm1al76";
};
buildInputs = [aspell pkgconfig glib];
configureFlags = "--enable-shared --disable-static";
}

View file

@ -1534,6 +1534,11 @@ rec {
inherit fetchurl stdenv perl;
};
enchant = import ../development/libraries/enchant {
inherit fetchurl stdenv aspell pkgconfig;
inherit (gnome) glib;
};
exiv2 = import ../development/libraries/exiv2 {
inherit fetchurl stdenv zlib;
};