mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
gegl added (needs recent glibc)
svn path=/nixpkgs/trunk/; revision=11465
This commit is contained in:
parent
15a322f887
commit
1923d17a7d
19
pkgs/development/libraries/gegl/default.nix
Normal file
19
pkgs/development/libraries/gegl/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue