ba274e578c
Made octave link with graphicsmagick to get imread() working. Nevertheless, imread does not work, because of some problems between octave and latest versions of graphicsmagick: http://www-old.cae.wisc.edu/pipermail/octave-maintainers/2010-February/015295.html Next to do: add an older version of graphics magick for octave. svn path=/nixpkgs/trunk/; revision=20389
32 lines
777 B
Nix
32 lines
777 B
Nix
{stdenv, fetchurl, bzip2, freetype, graphviz, ghostscript
|
|
, libjpeg, libpng, libtiff, libxml2, zlib, libtool
|
|
, libX11}:
|
|
|
|
let version = "1.3.11"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "graphicsmagick-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/graphicsmagick/GraphicsMagick-${version}.tar.bz2";
|
|
sha256 = "184grcvxa5w0ghiv8zf2vdva0kgp3njf20k3h6lbylspjgd3zhxg";
|
|
};
|
|
|
|
configureFlags = "--enable-shared";
|
|
|
|
buildInputs =
|
|
[ bzip2 freetype ghostscript graphviz libjpeg libpng libtiff libX11 libxml2
|
|
zlib libtool
|
|
];
|
|
|
|
postInstall = ''
|
|
sed -i 's/-ltiff.*'\'/\'/ $out/bin/*
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.graphicsmagick.org;
|
|
description = "Swiss army knife of image processing";
|
|
license = stdenv.lib.licenses.mit;
|
|
};
|
|
}
|