about summary refs log tree commit diff
path: root/pkgs/development/libraries/gegl
diff options
context:
space:
mode:
authorCillian de Roiste <cillian.deroiste@gmail.com>2012-06-04 17:38:47 +0000
committerCillian de Roiste <cillian.deroiste@gmail.com>2012-06-04 17:38:47 +0000
commit27bef25b17953d9749d50b6917d712172ab8e6ea (patch)
treebf6056b6d5b158e4624a3114f3191aa51168cad7 /pkgs/development/libraries/gegl
parent104bd01e1def19d6e357689af3f57ef5740d5f8f (diff)
Applying the patch from Rok Garbas to add GIMP 2.8.0
svn path=/nixpkgs/trunk/; revision=34352
Diffstat (limited to 'pkgs/development/libraries/gegl')
-rw-r--r--pkgs/development/libraries/gegl/0.2.0.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gegl/0.2.0.nix b/pkgs/development/libraries/gegl/0.2.0.nix
new file mode 100644
index 0000000000000..5da6e3e40f4cf
--- /dev/null
+++ b/pkgs/development/libraries/gegl/0.2.0.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, pkgconfig, glib, babl, libpng, cairo, libjpeg
+, librsvg, pango, gtk, bzip2, intltool }:
+        
+stdenv.mkDerivation rec {
+  name = "gegl-0.2.0";
+
+  src = fetchurl {
+    url = "ftp://ftp.gtk.org/pub/gegl/0.2/${name}.tar.bz2";
+    sha256 = "df2e6a0d9499afcbc4f9029c18d9d1e0dd5e8710a75e17c9b1d9a6480dd8d426";
+  };
+
+  # needs fonts otherwise  don't know how to pass them
+  configureFlags = "--disable-docs";
+
+  buildInputs = [ babl libpng cairo libjpeg librsvg pango gtk bzip2 intltool ];
+
+  buildNativeInputs = [ pkgconfig ];
+
+  meta = { 
+    description = "Graph-based image processing framework";
+    homepage = http://www.gegl.org;
+    license = "GPL3";
+  };
+}