nixpkgs/pkgs/tools/graphics/epstool/default.nix

32 lines
847 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2017-03-16 05:40:01 +00:00
stdenv.mkDerivation rec {
version = "3.08";
pname = "epstool";
2017-03-16 05:40:01 +00:00
src = fetchurl {
url = "http://ftp.de.debian.org/debian/pool/main/e/epstool/epstool_${version}+repack.orig.tar.gz";
sha256 = "1pfgqbipwk36clhma2k365jkpvyy75ahswn8jczzys382jalpwgk";
};
2021-03-17 09:53:25 +00:00
makeFlags = [
"CC=${stdenv.cc.targetPrefix}cc"
"CLINK=${stdenv.cc.targetPrefix}cc"
"LINK=${stdenv.cc.targetPrefix}cc"
];
2017-03-16 05:40:01 +00:00
installPhase = ''
make EPSTOOL_ROOT=$out install
'';
patches = [ ./gcc43.patch ];
meta = with lib; {
2017-03-16 05:40:01 +00:00
description = "A utility to create or extract preview images in EPS files, fix bounding boxes and convert to bitmaps";
homepage = "http://pages.cs.wisc.edu/~ghost/gsview/epstool.htm";
2017-03-16 05:40:01 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.asppsa ];
2021-03-17 09:53:25 +00:00
platforms = platforms.all;
2017-03-16 05:40:01 +00:00
};
}