2009-11-04 22:28:11 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk, freetype
|
2006-07-12 01:28:29 +02:00
|
|
|
, fontconfig, libart_lgpl, libtiff, libjpeg, libpng, libexif, zlib, perl
|
2008-10-10 01:21:39 +02:00
|
|
|
, perlXMLParser, python, pygtk, gettext, xlibs, intltool, babl, gegl
|
2007-08-31 15:14:20 +02:00
|
|
|
}:
|
2005-09-12 00:38:47 +02:00
|
|
|
|
2009-11-04 22:28:11 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-10-08 17:38:17 +02:00
|
|
|
name = "gimp-2.6.11";
|
2009-02-02 13:40:05 +01:00
|
|
|
|
2005-09-12 00:38:47 +02:00
|
|
|
src = fetchurl {
|
2009-11-04 22:28:11 +01:00
|
|
|
url = "ftp://ftp.gtk.org/pub/gimp/v2.6/${name}.tar.bz2";
|
2010-10-08 17:38:17 +02:00
|
|
|
sha256 = "18dhgicc3f04q0js521kq9w3gq8yqawpf6vdb7m14f9vh380hvcv";
|
2005-09-12 00:38:47 +02:00
|
|
|
};
|
|
|
|
|
2007-08-31 15:14:20 +02:00
|
|
|
buildInputs = [
|
2009-11-04 22:28:11 +01:00
|
|
|
pkgconfig gtk freetype fontconfig
|
2007-08-31 15:14:20 +02:00
|
|
|
libart_lgpl libtiff libjpeg libpng libexif zlib perl
|
2008-10-10 01:21:39 +02:00
|
|
|
perlXMLParser python pygtk gettext intltool babl gegl
|
2007-08-31 15:14:20 +02:00
|
|
|
];
|
2005-09-12 00:38:47 +02:00
|
|
|
|
2009-08-28 01:32:13 +02:00
|
|
|
passthru = { inherit gtk; }; # probably its a good idea to use the same gtk in plugins ?
|
|
|
|
|
2005-09-12 00:38:47 +02:00
|
|
|
configureFlags = [ "--disable-print" ];
|
2007-08-31 15:14:20 +02:00
|
|
|
|
|
|
|
# "screenshot" needs this.
|
|
|
|
NIX_LDFLAGS = "-rpath ${xlibs.libX11}/lib";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The GNU Image Manipulation Program";
|
|
|
|
homepage = http://www.gimp.org/;
|
|
|
|
license = "GPL";
|
|
|
|
};
|
2005-09-12 00:38:47 +02:00
|
|
|
}
|