nixpkgs/pkgs/applications/graphics/gimp/2.8.nix

41 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, intltool, babl, gegl, gtk, glib, gdk_pixbuf
, pango, cairo, freetype, fontconfig, lcms, libpng, libjpeg, poppler, libtiff
, webkit, libmng, librsvg, libwmf, zlib, libzip, ghostscript, aalib, jasper
, python, pygtk, libart_lgpl, libexif, gettext, xlibs, wrapPython }:
stdenv.mkDerivation rec {
2014-08-27 16:46:24 +00:00
name = "gimp-2.8.14";
2013-06-28 21:04:43 +00:00
src = fetchurl {
2014-05-22 09:48:42 +00:00
url = "http://download.gimp.org/pub/gimp/v2.8/${name}.tar.bz2";
2014-08-27 16:46:24 +00:00
sha256 = "d82a958641c9c752d68e35f65840925c08e314cea90222ad845892a40e05b22d";
};
2013-06-28 21:04:43 +00:00
buildInputs =
[ pkgconfig intltool babl gegl gtk glib gdk_pixbuf pango cairo
freetype fontconfig lcms libpng libjpeg poppler libtiff webkit
libmng librsvg libwmf zlib libzip ghostscript aalib jasper
python pygtk libart_lgpl libexif gettext xlibs.libXpm
wrapPython
];
pythonPath = [ pygtk ];
postInstall = ''wrapPythonPrograms'';
passthru = { inherit gtk; }; # probably its a good idea to use the same gtk in plugins ?
#configureFlags = [ "--disable-print" ];
# "screenshot" needs this.
2015-04-01 20:44:17 +00:00
NIX_LDFLAGS = "-rpath ${xlibs.libX11}/lib"
+ stdenv.lib.optionalString stdenv.isDarwin " -lintl";
meta = {
description = "The GNU Image Manipulation Program";
homepage = http://www.gimp.org/;
license = stdenv.lib.licenses.gpl3Plus;
2015-04-01 20:44:17 +00:00
platforms = stdenv.lib.platforms.unix;
};
}