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