about summary refs log tree commit diff
path: root/pkgs/applications/graphics/ImageMagick
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2008-02-28 18:53:39 +0000
committerMichael Raskin <7c6f434c@mail.ru>2008-02-28 18:53:39 +0000
commit5883330e2c1437138f5bec1a62c5492e9d5aebc0 (patch)
treeedb527957d7f90367e7d2e8bbe99c8ab6e80a5cc /pkgs/applications/graphics/ImageMagick
parentdcddcf0d879cfb6409ce472469712bc9c05cdf5a (diff)
downloadnixlib-5883330e2c1437138f5bec1a62c5492e9d5aebc0.tar
nixlib-5883330e2c1437138f5bec1a62c5492e9d5aebc0.tar.gz
nixlib-5883330e2c1437138f5bec1a62c5492e9d5aebc0.tar.bz2
nixlib-5883330e2c1437138f5bec1a62c5492e9d5aebc0.tar.lz
nixlib-5883330e2c1437138f5bec1a62c5492e9d5aebc0.tar.xz
nixlib-5883330e2c1437138f5bec1a62c5492e9d5aebc0.tar.zst
nixlib-5883330e2c1437138f5bec1a62c5492e9d5aebc0.zip
Updated ImageMagick
svn path=/nixpkgs/trunk/; revision=10886
Diffstat (limited to 'pkgs/applications/graphics/ImageMagick')
-rw-r--r--pkgs/applications/graphics/ImageMagick/6.3.9-0.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/ImageMagick/6.3.9-0.nix b/pkgs/applications/graphics/ImageMagick/6.3.9-0.nix
new file mode 100644
index 000000000000..17632f3c46ac
--- /dev/null
+++ b/pkgs/applications/graphics/ImageMagick/6.3.9-0.nix
@@ -0,0 +1,26 @@
+args: with args;
+stdenv.mkDerivation (rec {
+  name = "ImageMagick-${version}";
+
+  src = fetchurl {
+    url = "ftp://ftp.imagemagick.org/pub/ImageMagick/${name}.tar.bz2";
+    sha256 = "0ynn8gxixjb16xhg60hp2sbfymh03y5qxxgffwlchciiylw9dlvd";
+  };
+
+  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 libtool] ++ (if args ? tetex then [args.tetex] else [])
+		 ++ (if args ? librsvg then [args.librsvg] else []);
+
+  meta = {
+    homepage = http://www.imagemagick.org;
+  };
+} // (if args ? tetex then {
+	preConfigure = "
+		export DVIDecodeDelegate=${args.tetex}/bin/dvips
+	";
+} else {}))