2007-07-01 23:31:24 +01:00
|
|
|
{stdenv, fetchurl, bzip2, freetype, graphviz, ghostscript,
|
|
|
|
libjpeg, libpng, libtiff, libX11, libxml2, zlib}:
|
|
|
|
stdenv.mkDerivation {
|
2007-07-07 14:34:39 +01:00
|
|
|
name = "ImageMagick-6.3.5";
|
2007-07-01 23:31:24 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2007-08-09 01:14:14 +01:00
|
|
|
url = ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.3.5-5.tar.bz2;
|
|
|
|
sha256 = "0avq6kllxw552krxgsa72c1b44zwyhwi38dk4a4ij3fqy0svy9zh";
|
2007-07-01 23:31:24 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = " --with-dots --with-gs-font-dir="+ ghostscript +
|
|
|
|
"/share/ghostscript/fonts --with-gslib ";
|
|
|
|
|
|
|
|
buildInputs = [bzip2 freetype ghostscript graphviz libjpeg libpng
|
|
|
|
libtiff libX11 libxml2 zlib ];
|
|
|
|
}
|