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

70 lines
1.9 KiB
Nix
Raw Normal View History

{ stdenv, fetchsvn, pkgconfig, libjpeg, libpng, flex, zlib, perl, libxml2, makeWrapper, libX11, libtiff }:
let rev = 1742; in
stdenv.mkDerivation {
name = "netpbm-advanced-${toString rev}";
src = fetchsvn {
url = https://netpbm.svn.sourceforge.net/svnroot/netpbm/advanced;
inherit rev;
sha256 = "0csx6g0ci66nx1a6z0a9dkpfp66mdvcpp5r7g6zrx4jp18r9hzb2";
};
2013-12-25 11:08:19 +01:00
postPatch = /* CVE-2005-2471, from Arch */ ''
substituteInPlace converter/other/pstopnm.c \
--replace '"-DSAFER"' '"-DPARANOIDSAFER"'
'';
NIX_CFLAGS_COMPILE = "-fPIC"; # Gentoo adds this on every platform
2013-07-19 19:42:11 +02:00
buildInputs = [ pkgconfig flex zlib perl libpng libjpeg libxml2 makeWrapper libX11 libtiff ];
2013-07-19 19:42:11 +02:00
configurePhase = ''
cp config.mk.in config.mk
substituteInPlace "config.mk" \
--replace "TIFFLIB = NONE" "TIFFLIB = ${libtiff}/lib/libtiff.so" \
2013-12-25 10:30:44 +01:00
--replace "TIFFHDR_DIR =" "TIFFHDR_DIR = ${libtiff}/include"
2013-07-19 19:42:11 +02:00
'';
preBuild = ''
2013-07-19 19:42:11 +02:00
export LDFLAGS="-lz"
substituteInPlace "pm_config.in.h" \
--subst-var-by "rgbPath1" "$out/lib/rgb.txt" \
--subst-var-by "rgbPath2" "/var/empty/rgb.txt" \
--subst-var-by "rgbPath3" "/var/empty/rgb.txt"
touch lib/standardppmdfont.c
'';
enableParallelBuilding = true;
installPhase = ''
make package pkgdir=$PWD/netpbmpkg
# Pass answers to the script questions
./installnetpbm << EOF
$PWD/netpbmpkg
$out
Y
$out/bin
$out/lib
N
$out/lib
$out/lib
$out/include
$out/man
N
EOF
# wrap any scripts that expect other programs in the package to be in their PATH
for prog in ppmquant; do
wrapProgram "$out/bin/$prog" --prefix PATH : "$out/bin"
done
'';
meta = {
homepage = http://netpbm.sourceforge.net/;
description = "Toolkit for manipulation of graphic images";
license = "GPL,free";
2013-07-19 20:48:26 +02:00
platforms = stdenv.lib.platforms.linux;
};
}