From 5883330e2c1437138f5bec1a62c5492e9d5aebc0 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Thu, 28 Feb 2008 18:53:39 +0000 Subject: Updated ImageMagick svn path=/nixpkgs/trunk/; revision=10886 --- pkgs/applications/graphics/ImageMagick/6.3.9-0.nix | 26 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 pkgs/applications/graphics/ImageMagick/6.3.9-0.nix (limited to 'pkgs') 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 00000000000..17632f3c46a --- /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 {})) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3708112b13f..9bf623a6858 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4912,7 +4912,7 @@ rec { inherit (xlibs) libX11 libXft libXext libXinerama libXrandr; }; - imagemagickFun = lib.sumArgs (selectVersion ../applications/graphics/ImageMagick "6.3.8-5" ) { + imagemagickFun = lib.sumArgs (selectVersion ../applications/graphics/ImageMagick "6.3.9-0" ) { inherit stdenv fetchurl libtool; }; -- cgit 1.4.1