61f4326752
svn path=/nixpkgs/trunk/; revision=9623
24 lines
743 B
Nix
24 lines
743 B
Nix
args: with args;
|
|
(stdenv.mkDerivation ({
|
|
name = "ImageMagick-6.3.5";
|
|
|
|
src = fetchurl {
|
|
url = ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.3.5-5.tar.bz2;
|
|
sha256 = "0avq6kllxw552krxgsa72c1b44zwyhwi38dk4a4ij3fqy0svy9zh";
|
|
};
|
|
|
|
configureFlags = " --with-dots --with-gs-font-dir="+ ghostscript +
|
|
"/share/ghostscript/fonts --with-gslib " +(
|
|
if args ? tetex then " --with-frozenpaths " else ""
|
|
);
|
|
|
|
buildInputs = [bzip2 freetype ghostscript graphviz libjpeg libpng
|
|
libtiff libX11 libxml2 zlib ] ++ (if args ? tetex then [args.tetex] else [])
|
|
++ (if args ? librsvg then [args.librsvg] else [])
|
|
;
|
|
} // (if args ? tetex then {
|
|
preConfigure = "
|
|
export DVIDecodeDelegate=${args.tetex}/bin/dvips
|
|
";
|
|
} else {})))
|