librepcb: 1.1.0 -> 1.2.0
[NixPkgs.git] / pkgs / by-name / a2 / a2ps / package.nix
blob78d4c4dcad9fc599e0a2d36779bcbae3ff630b8b
1 { lib
2 , stdenv
3 , fetchurl
4 , autoconf
5 , bison
6 , file
7 , perl
8 , pkg-config
9 , boehmgc
10 , gperf
11 , libpaper
14 stdenv.mkDerivation rec {
15   pname = "a2ps";
16   version = "4.15.6";
18   src = fetchurl {
19     url = "mirror://gnu/a2ps/a2ps-${version}.tar.gz";
20     hash = "sha256-h/+dgByxGWkYHVuM+LZeZeWyS7DHahuCXoCY8pBvvfQ=";
21   };
23   postPatch = ''
24     substituteInPlace afm/make_fonts_map.sh --replace "/bin/rm" "rm"
25     substituteInPlace tests/defs.in --replace "/bin/rm" "rm"
26   '';
28   nativeBuildInputs = [ autoconf bison file perl pkg-config ];
29   buildInputs = [ boehmgc gperf libpaper ];
31   strictDeps = true;
33   meta = with lib; {
34     description = "Anything to PostScript converter and pretty-printer";
35     longDescription = ''
36       GNU a2ps converts files into PostScript for printing or viewing. It uses a nice default format,
37       usually two pages on each physical page, borders surrounding pages, headers with useful information
38       (page number, printing date, file name or supplied header), line numbering, symbol substitution as
39       well as pretty printing for a wide range of programming languages.
40     '';
41     homepage = "https://www.gnu.org/software/a2ps/";
42     license = licenses.gpl3Plus;
43     maintainers = [ maintainers.bennofs ];
44     platforms = platforms.unix;
45   };