2016-10-13 23:53:43 +02:00
|
|
|
{ stdenv, fetchurl, fetchpatch, bzip2, freetype, graphviz, ghostscript
|
|
|
|
, libjpeg, libpng, libtiff, libxml2, zlib, libtool, xz, libX11
|
2017-02-28 21:14:24 +01:00
|
|
|
, libwebp, quantumdepth ? 8, fixDarwinDylibNames }:
|
2010-03-04 15:44:47 +01:00
|
|
|
|
2018-05-01 01:16:51 +02:00
|
|
|
let version = "1.3.29"; in
|
2010-03-04 15:44:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "graphicsmagick-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2012-02-23 22:14:19 +01:00
|
|
|
url = "mirror://sourceforge/graphicsmagick/GraphicsMagick-${version}.tar.xz";
|
2018-05-01 01:16:51 +02:00
|
|
|
sha256 = "1m0cc6kpky06lpcipj7rfwc2jbw2igr0jk97zqmw3j1ld5mg93g1";
|
2010-03-04 15:44:47 +01:00
|
|
|
};
|
|
|
|
|
2016-10-13 23:53:43 +02:00
|
|
|
patches = [
|
|
|
|
./disable-popen.patch
|
|
|
|
];
|
2016-05-30 10:26:31 +02:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-shared"
|
|
|
|
"--with-quantum-depth=${toString quantumdepth}"
|
|
|
|
"--with-gslib=yes"
|
|
|
|
];
|
2010-03-04 15:44:51 +01:00
|
|
|
|
2010-03-04 15:44:47 +01:00
|
|
|
buildInputs =
|
|
|
|
[ bzip2 freetype ghostscript graphviz libjpeg libpng libtiff libX11 libxml2
|
2016-05-30 10:26:31 +02:00
|
|
|
zlib libtool libwebp
|
2017-02-28 21:14:24 +01:00
|
|
|
]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
2010-03-04 15:44:47 +01:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ xz ];
|
2012-02-23 22:14:19 +01:00
|
|
|
|
2010-03-04 17:41:10 +01:00
|
|
|
postInstall = ''
|
|
|
|
sed -i 's/-ltiff.*'\'/\'/ $out/bin/*
|
|
|
|
'';
|
|
|
|
|
2010-03-04 15:44:47 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.graphicsmagick.org;
|
|
|
|
description = "Swiss army knife of image processing";
|
|
|
|
license = stdenv.lib.licenses.mit;
|
2012-02-03 22:02:00 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2010-03-04 15:44:47 +01:00
|
|
|
};
|
|
|
|
}
|