2016-09-11 21:24:51 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, babl, gegl, gtk2, glib, gdk_pixbuf
|
2013-06-29 14:07:15 +00:00
|
|
|
, pango, cairo, freetype, fontconfig, lcms, libpng, libjpeg, poppler, libtiff
|
2012-06-04 17:38:47 +00:00
|
|
|
, webkit, libmng, librsvg, libwmf, zlib, libzip, ghostscript, aalib, jasper
|
2016-11-22 08:14:00 +00:00
|
|
|
, python2Packages, libart_lgpl, libexif, gettext, xorg
|
|
|
|
, AppKit, Cocoa, gtk-mac-integration }:
|
2012-06-04 17:38:47 +00:00
|
|
|
|
2016-09-25 21:19:01 +00:00
|
|
|
let
|
2016-10-19 09:10:36 +00:00
|
|
|
inherit (python2Packages) pygtk wrapPython python;
|
2016-09-25 21:19:01 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2016-04-26 12:26:45 +00:00
|
|
|
name = "gimp-${version}";
|
2017-05-13 19:08:43 +00:00
|
|
|
version = "2.8.22";
|
2013-06-28 21:04:43 +00:00
|
|
|
|
2016-02-25 21:24:45 +00:00
|
|
|
# This declarations for `gimp-with-plugins` wrapper,
|
|
|
|
# (used for determining $out/lib/gimp/${majorVersion}/ paths)
|
|
|
|
majorVersion = "2.0";
|
|
|
|
targetPluginDir = "$out/lib/gimp/${majorVersion}/plug-ins";
|
|
|
|
targetScriptDir = "$out/lib/gimp/${majorVersion}/scripts";
|
|
|
|
|
2012-06-04 17:38:47 +00:00
|
|
|
src = fetchurl {
|
2014-05-22 09:48:42 +00:00
|
|
|
url = "http://download.gimp.org/pub/gimp/v2.8/${name}.tar.bz2";
|
2017-05-13 19:08:43 +00:00
|
|
|
sha256 = "12k3lp938qdc9cqj29scg55f3bb8iav2fysd29w0s49bqmfa71wi";
|
2012-06-04 17:38:47 +00:00
|
|
|
};
|
2013-06-28 21:04:43 +00:00
|
|
|
|
|
|
|
buildInputs =
|
2016-09-11 21:24:51 +00:00
|
|
|
[ pkgconfig intltool babl gegl gtk2 glib gdk_pixbuf pango cairo
|
2013-06-29 14:07:15 +00:00
|
|
|
freetype fontconfig lcms libpng libjpeg poppler libtiff webkit
|
2012-06-04 17:38:47 +00:00
|
|
|
libmng librsvg libwmf zlib libzip ghostscript aalib jasper
|
2015-09-15 09:26:18 +00:00
|
|
|
python pygtk libart_lgpl libexif gettext xorg.libXpm
|
2014-01-31 06:05:53 +00:00
|
|
|
wrapPython
|
2016-11-22 08:14:00 +00:00
|
|
|
]
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ AppKit Cocoa gtk-mac-integration ];
|
2012-06-04 17:38:47 +00:00
|
|
|
|
2014-01-31 06:05:53 +00:00
|
|
|
pythonPath = [ pygtk ];
|
|
|
|
|
2016-08-28 23:41:17 +00:00
|
|
|
postFixup = ''
|
|
|
|
wrapPythonProgramsIn $out/lib/gimp/2.0/plug-ins/
|
|
|
|
wrapProgram $out/bin/gimp \
|
|
|
|
--prefix PYTHONPATH : "$PYTHONPATH" \
|
|
|
|
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
|
|
|
|
'';
|
2014-01-31 06:05:53 +00:00
|
|
|
|
2016-09-11 21:24:51 +00:00
|
|
|
passthru = { gtk = gtk2; }; # probably its a good idea to use the same gtk in plugins ?
|
2012-06-04 17:38:47 +00:00
|
|
|
|
|
|
|
#configureFlags = [ "--disable-print" ];
|
|
|
|
|
2016-01-17 00:28:58 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-06-04 17:38:47 +00:00
|
|
|
# "screenshot" needs this.
|
2016-01-24 07:29:49 +00:00
|
|
|
NIX_LDFLAGS = "-rpath ${xorg.libX11.out}/lib"
|
2015-04-01 20:44:17 +00:00
|
|
|
+ stdenv.lib.optionalString stdenv.isDarwin " -lintl";
|
2012-06-04 17:38:47 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The GNU Image Manipulation Program";
|
|
|
|
homepage = http://www.gimp.org/;
|
2014-11-06 00:44:33 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2016-11-22 08:14:00 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2012-06-04 17:38:47 +00:00
|
|
|
};
|
|
|
|
}
|