2007-05-14 01:05:34 +01:00
|
|
|
{stdenv, fetchurl, pkgconfig, gtk, libgtkhtml, freetype
|
2006-07-12 00:28:29 +01:00
|
|
|
, fontconfig, libart_lgpl, libtiff, libjpeg, libpng, libexif, zlib, perl
|
|
|
|
, perlXMLParser, python, pygtk, gettext}:
|
2005-09-11 23:38:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2007-08-18 02:20:34 +01:00
|
|
|
name = "gimp-2.4.0-rc1";
|
2005-09-11 23:38:47 +01:00
|
|
|
src = fetchurl {
|
2007-08-18 02:20:34 +01:00
|
|
|
url = ftp://ftp.gtk.org/pub/gimp/v2.4/testing/gimp-2.4.0-rc1.tar.bz2;
|
|
|
|
sha256 = "0n9gfmmxjjhi4dpdfwc37z8n4zsyx6byil1ig27agjgic22bydm1" ;
|
2005-09-11 23:38:47 +01:00
|
|
|
};
|
|
|
|
|
2007-05-14 01:05:34 +01:00
|
|
|
buildInputs = [ pkgconfig gtk libgtkhtml freetype fontconfig
|
2006-07-12 00:28:29 +01:00
|
|
|
libart_lgpl libtiff libjpeg libpng libexif zlib perl
|
|
|
|
perlXMLParser python pygtk gettext ] ;
|
2005-09-11 23:38:47 +01:00
|
|
|
|
|
|
|
configureFlags = [ "--disable-print" ];
|
|
|
|
}
|