forked from mirrors/nixpkgs
enchant library added
svn path=/nixpkgs/trunk/; revision=9455
This commit is contained in:
parent
2243a1f496
commit
b167a71f29
10
pkgs/development/libraries/enchant/default.nix
Normal file
10
pkgs/development/libraries/enchant/default.nix
Normal 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";
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue