nixpkgs/pkgs/development/libraries/gegl/default.nix
Peter Simons a7949741f6 gimp 2.8
- rename package from gimp_2_8_0 to gimp_2_8 as discussed on mailing list[1]
- remove babl_0_1_10 and gegl_0_2_0 and use them as default versions

[1] http://article.gmane.org/gmane.linux.distributions.nixos/8708

svn path=/nixpkgs/trunk/; revision=34444
2012-06-11 07:17:39 +00:00

25 lines
682 B
Nix

{ 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";
};
}