summary refs log tree commit diff
path: root/pkgs/development/libraries/gegl
diff options
context:
space:
mode:
authorSergey Mironov <ierton@gmail.com>2012-08-23 00:13:43 +0400
committerSergey Mironov <ierton@gmail.com>2012-08-23 03:09:19 +0400
commit222b6e21a5edf588aa4c176d165095a4b84df7a8 (patch)
treef2e183a0e1a0ae703d98a8ba72d189f7b8f3f18d /pkgs/development/libraries/gegl
parent270c7f2209618d3a55def6aafee5527bb4ad0b08 (diff)
downloadnixpkgs-222b6e21a5edf588aa4c176d165095a4b84df7a8.tar
nixpkgs-222b6e21a5edf588aa4c176d165095a4b84df7a8.tar.gz
nixpkgs-222b6e21a5edf588aa4c176d165095a4b84df7a8.tar.bz2
nixpkgs-222b6e21a5edf588aa4c176d165095a4b84df7a8.tar.lz
nixpkgs-222b6e21a5edf588aa4c176d165095a4b84df7a8.tar.xz
nixpkgs-222b6e21a5edf588aa4c176d165095a4b84df7a8.tar.zst
nixpkgs-222b6e21a5edf588aa4c176d165095a4b84df7a8.zip
gimp: revert broken gimp-2.6 dependencies
Diffstat (limited to 'pkgs/development/libraries/gegl')
-rw-r--r--pkgs/development/libraries/gegl/0_0_22.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gegl/0_0_22.nix b/pkgs/development/libraries/gegl/0_0_22.nix
new file mode 100644
index 00000000000..150ba1ac961
--- /dev/null
+++ b/pkgs/development/libraries/gegl/0_0_22.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, pkgconfig, glib, babl_0_0_22, libpng12, cairo, libjpeg
+, librsvg, pango, gtk }:
+        
+stdenv.mkDerivation {
+  name = "gegl-0.0.22";
+
+  src = fetchurl {
+    url = ftp://ftp.gimp.org/pub/gegl/0.0/gegl-0.0.22.tar.bz2;
+    sha256 = "0nx6r9amzhw5d2ghlw3z8qnry18rwz1ymvl2cm31b8p49z436wl5";
+  };
+
+  configureFlags = "--disable-docs"; # needs fonts otherwise  don't know how to pass them
+
+  buildInputs = [ pkgconfig glib babl_0_0_22 libpng12 cairo libjpeg librsvg pango gtk ];
+
+  meta = { 
+    description = "Graph-based image processing framework";
+    homepage = http://www.gegl.org;
+    license = "GPL3";
+  };
+}