mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
47 lines
1.3 KiB
Nix
47 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.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/a2ps/a2ps-${version}.tar.gz";
|
|
hash = "sha256-h/+dgByxGWkYHVuM+LZeZeWyS7DHahuCXoCY8pBvvfQ=";
|
|
};
|
|
|
|
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 = "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;
|
|
};
|
|
}
|