about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-10-28 08:46:13 +0000
committerPeter Simons <simons@cryp.to>2010-10-28 08:46:13 +0000
commite6bd263b4f5e1d461882561b4cd7221eb1753589 (patch)
treecb51d1960d4da04e1cdbbb8287ff13f7e69bc753 /pkgs
parentca4a6cc93318a5aa22584599a9d2fc3d5df21bfc (diff)
downloadnixlib-e6bd263b4f5e1d461882561b4cd7221eb1753589.tar
nixlib-e6bd263b4f5e1d461882561b4cd7221eb1753589.tar.gz
nixlib-e6bd263b4f5e1d461882561b4cd7221eb1753589.tar.bz2
nixlib-e6bd263b4f5e1d461882561b4cd7221eb1753589.tar.lz
nixlib-e6bd263b4f5e1d461882561b4cd7221eb1753589.tar.xz
nixlib-e6bd263b4f5e1d461882561b4cd7221eb1753589.tar.zst
nixlib-e6bd263b4f5e1d461882561b4cd7221eb1753589.zip
Advance version of Imagemagick to 6.6.5-4 .
Always include the --with-frozenpaths configure flag ( independently of tetex ).
Include the --with-rsvg configure flag when librsvg is not null.

svn path=/nixpkgs/trunk/; revision=24509
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/graphics/ImageMagick/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix
index e40c0372ffec..7ec65f3de941 100644
--- a/pkgs/applications/graphics/ImageMagick/default.nix
+++ b/pkgs/applications/graphics/ImageMagick/default.nix
@@ -17,20 +17,21 @@
 }:
 
 let
-  version = "6.5.9-1";
+  version = "6.6.5-4";
 in
 stdenv.mkDerivation rec {
   name = "ImageMagick-${version}";
 
   src = fetchurl {
     url = "mirror://imagemagick/${name}.tar.bz2";
-    sha256 = "0a4yhhfqagz28yccydngi31050101jfmq5ljln61g69yy6m47ifg";
+    sha256 = "1s3l98xc1gnxi2wdg3sy9723f6qf5yk81wln8ghn2z9kvi09w7gw";
   };
 
   configureFlags = ''
     --with-gs-font-dir=${ghostscript}/share/ghostscript/fonts
     --with-gslib
-    ${if tetex != null then "--with-frozenpaths" else ""}
+    --with-frozenpaths
+    ${if librsvg != null then "--with-rsvg" else ""}
   '';
 
   buildInputs =