Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
1000 B
Nix
38 lines
1000 B
Nix
{
|
|
fetchurl,
|
|
lib,
|
|
stdenv,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mpage";
|
|
version = "2.5.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.mesa.nl/pub/mpage/mpage-${version}.tgz";
|
|
sha256 = "sha256-I1HpHSV5SzWN9mGPF6cBOijTUOwgQI/gb4Ej3EZz/pM=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i "Makefile" -e "s|^ *PREFIX *=.*$|PREFIX = $out|g"
|
|
substituteInPlace Makefile --replace 'gcc' '${stdenv.cc.targetPrefix}cc'
|
|
'';
|
|
|
|
meta = {
|
|
description = "Many-to-one page printing utility";
|
|
mainProgram = "mpage";
|
|
|
|
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 = lib.licenses.gpl2Plus;
|
|
homepage = "http://www.mesa.nl/pub/mpage/";
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|