about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/typesetting/psutils/default.nix
blob: 72c72d1b3baa6ab68bd3201af7589d4a1ba8e14f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchurl, perl }:

stdenv.mkDerivation {
  name = "psutils-17";

  src = fetchurl {
    url = "ftp://ftp.knackered.org/pub/psutils/psutils-p17.tar.gz";
    sha256 = "1r4ab1fvgganm02kmm70b2r1azwzbav2am41gbigpa2bb1wynlrq";
  };

  configurePhase = ''
    sed -e 's,/usr/local/bin/perl,${perl}/bin/perl,' \
      -e "s,/usr/local,$out," \
      Makefile.unix > Makefile
  '';

  preInstall = ''
    mkdir -p $out/bin $out/share/man/man1
  '';

  meta = with stdenv.lib; {
    description = "Collection of useful utilities for manipulating PS documents";
    homepage = "http://knackered.knackered.org/angus/psutils/";
    license = licenses.bsd3;
  };
}