summary refs log tree commit diff
path: root/pkgs/tools/text/mpage/default.nix
blob: 6665b377ccf50b6e7a208ec142a9625f213e8954 (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
27
28
29
{ fetchurl, stdenv }:

stdenv.mkDerivation rec {
  name = "mpage-2.5.7";
  src = fetchurl {
    url = "http://www.mesa.nl/pub/mpage/${name}.tgz";
    sha256 = "1zn37r5xrvjgjbw2bdkc0r7s6q8b1krmcryzj0yf0dyxbx79rasi";
  };

  patchPhase = ''
    sed -i "Makefile" -e "s|^ *PREFIX *=.*$|PREFIX = $out|g"
  '';

  meta = {
    description = "Many-to-one page printing utility";

    longDescription = ''
      Mpage reads plain text files or PostScript documents and prints
      them on a PostScript printer with the text reduced in size so
      that several pages appear on one sheet of paper.  This is useful
      for viewing large printouts on a small amount of paper.  It uses
      ISO 8859.1 to print 8-bit characters.
    '';

    license = "liberal";  # a non-copyleft license, see `Copyright' file
    homepage = http://www.mesa.nl/pub/mpage/;
    platforms = stdenv.lib.platforms.linux;
  };
}