mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, autoconf
|
|
, bison
|
|
, file
|
|
, perl
|
|
, pkg-config
|
|
, boehmgc
|
|
, gperf
|
|
, libpaper
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "a2ps";
|
|
version = "4.15.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/a2ps/a2ps-${version}.tar.gz";
|
|
hash = "sha256-l5dwi6AoBa/DtbkeBsuOrJe4WEOpDmbP3mp8Y8oEKyo=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace afm/make_fonts_map.sh --replace "/bin/rm" "rm"
|
|
substituteInPlace tests/defs.in --replace "/bin/rm" "rm"
|
|
'';
|
|
|
|
nativeBuildInputs = [ autoconf bison file perl pkg-config ];
|
|
buildInputs = [ boehmgc gperf libpaper ];
|
|
|
|
strictDeps = true;
|
|
|
|
meta = with lib; {
|
|
description = "An Anything to PostScript converter and pretty-printer";
|
|
longDescription = ''
|
|
GNU a2ps converts files into PostScript for printing or viewing. It uses a nice default format,
|
|
usually two pages on each physical page, borders surrounding pages, headers with useful information
|
|
(page number, printing date, file name or supplied header), line numbering, symbol substitution as
|
|
well as pretty printing for a wide range of programming languages.
|
|
'';
|
|
homepage = "https://www.gnu.org/software/a2ps/";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.bennofs ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|