1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pdfjam: remove obsolete version

pdfjam is included in texlive
fixes #19826
This commit is contained in:
Florent Becker 2016-11-02 10:30:34 +01:00
parent 08d7fbb42d
commit f00e28164b
3 changed files with 0 additions and 30 deletions

View file

@ -1,9 +0,0 @@
source $stdenv/setup
tar zxvf $src
mkdir -p $out/bin
cp pdfjam/bin/* $out/bin
mkdir -p $out/man/man1
cp pdfjam/man1/* $out/man/man1

View file

@ -1,19 +0,0 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "pdfjam-${version}";
version = "2.08";
url-version = stdenv.lib.replaceChars ["."] [""] version;
builder = ./builder.sh;
src = fetchurl {
url = "http://go.warwick.ac.uk/pdfjam/pdfjam_${url-version}.tgz";
sha256 = "1wy0xhcy27d7agby598s20ba48s4yg5qkzr6anc6q1xdryccacf7";
};
meta = with stdenv.lib; {
platforms = platforms.linux;
maintainers = [ maintainers.mornfall ];
};
}

View file

@ -3142,8 +3142,6 @@ in
pdf2svg = callPackage ../tools/graphics/pdf2svg { };
pdfjam = callPackage ../tools/typesetting/pdfjam { };
pdfmod = callPackage ../applications/misc/pdfmod { };
jbig2enc = callPackage ../tools/graphics/jbig2enc { };