gegl added (needs recent glibc)

svn path=/nixpkgs/trunk/; revision=11465
This commit is contained in:
Marc Weber 2008-04-04 20:57:09 +00:00
parent 15a322f887
commit 1923d17a7d
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,19 @@
args:
args.stdenv.mkDerivation {
name = "gegl-0.0.16";
src = args.fetchurl {
url = ftp://ftp.gimp.org/pub/gegl/0.0/gegl-0.0.16.tar.bz2;
sha256 = "0jgbqgpv85x9kc14zi6a6bs6jvsm3hy48nvwrhhygmivayswa3qj";
};
configureFlags = "--disable-docs"; # needs fonts otherwise don't know how to pass them
buildInputs =(with args; [pkgconfig glib babl libpng cairo libjpeg librsvg pango ] );
meta = {
description = "graph based image processing framework";
homepage = http://www.gegl.org;
license = "GPL3";
};
}

View File

@ -2390,6 +2390,16 @@ let pkgs = rec {
inherit (gtkLibs) glib;
};
gegl = import ../development/libraries/gegl {
inherit fetchurl stdenv libpng pkgconfig babl;
# optional gtk+
glib = glib214;
openexr = openexr_1_6_1;
# avocodec avformat librsvg
inherit cairo libjpeg librsvg;
inherit (gtkLibs) pango;
};
geos = import ../development/libraries/geos {
inherit fetchurl fetchsvn stdenv mkDerivationByConfiguration autoconf automake libtool swig which lib;
use_svn = stdenv.system == "x86_64-linux";