mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
0a8262f943
The condition here is the same used to apply a patch above that makes this dependency necessary. I'm not sure why this isn't needed on Darwin, but it's definitely needed for building on Linux with pkgsLLVM or clangStdenv, and for FreeBSD. Normally I'd make the patch application unconditional to prevent situations like this ending up unnoticed, but since it requires an extra dependency and will be fixed in the next release anyway, let's just leave it.
145 lines
5.3 KiB
Nix
145 lines
5.3 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, perl
|
|
, enableGhostscript ? false, ghostscript # for postscript and html output
|
|
, enableHtml ? false, psutils, netpbm # for html output
|
|
, buildPackages
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, texinfo
|
|
, bison
|
|
, bash
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "groff";
|
|
version = "1.22.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/groff/${pname}-${version}.tar.gz";
|
|
sha256 = "14q2mldnr1vx0l9lqp9v2f6iww24gj28iyh4j2211hyynx67p3p7";
|
|
};
|
|
|
|
outputs = [ "out" "man" "doc" "info" "perl" ];
|
|
|
|
# Parallel build is failing for missing depends. Known upstream as:
|
|
# https://savannah.gnu.org/bugs/?62084
|
|
enableParallelBuilding = false;
|
|
|
|
patches = [
|
|
./0001-Fix-cross-compilation-by-looking-for-ar.patch
|
|
]
|
|
++ lib.optionals (stdenv.cc.isClang && lib.versionAtLeast stdenv.cc.version "9") [
|
|
# https://trac.macports.org/ticket/59783
|
|
(fetchpatch {
|
|
url = "https://raw.githubusercontent.com/openembedded/openembedded-core/ce265cf467f1c3e5ba2edbfbef2170df1a727a52/meta/recipes-extended/groff/files/0001-Include-config.h.patch";
|
|
sha256 = "1b0mg31xkpxkzlx696nr08rcc7ndpaxdplvysy0hw5099c4n1wyf";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
# BASH_PROG gets replaced with a path to the build bash which doesn't get automatically patched by patchShebangs
|
|
substituteInPlace contrib/gdiffmk/gdiffmk.sh \
|
|
--replace "@BASH_PROG@" "/bin/sh"
|
|
'' + lib.optionalString enableHtml ''
|
|
substituteInPlace src/preproc/html/pre-html.cpp \
|
|
--replace "psselect" "${psutils}/bin/psselect" \
|
|
--replace "pnmcut" "${lib.getBin netpbm}/bin/pnmcut" \
|
|
--replace "pnmcrop" "${lib.getBin netpbm}/bin/pnmcrop" \
|
|
--replace "pnmtopng" "${lib.getBin netpbm}/bin/pnmtopng"
|
|
substituteInPlace tmac/www.tmac \
|
|
--replace "pnmcrop" "${lib.getBin netpbm}/bin/pnmcrop" \
|
|
--replace "pngtopnm" "${lib.getBin netpbm}/bin/pngtopnm" \
|
|
--replace "@PNMTOPS_NOSETPAGE@" "${lib.getBin netpbm}/bin/pnmtops -nosetpage"
|
|
'';
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [ autoreconfHook pkg-config texinfo ]
|
|
# Required due to the patch that changes .ypp files.
|
|
++ lib.optional (stdenv.cc.isClang && lib.versionAtLeast stdenv.cc.version "9") bison;
|
|
buildInputs = [ perl bash ]
|
|
++ lib.optionals enableGhostscript [ ghostscript ]
|
|
++ lib.optionals enableHtml [ psutils netpbm ];
|
|
|
|
# Builds running without a chroot environment may detect the presence
|
|
# of /usr/X11 in the host system, leading to an impure build of the
|
|
# package. To avoid this issue, X11 support is explicitly disabled.
|
|
# Note: If we ever want to *enable* X11 support, then we'll probably
|
|
# have to pass "--with-appresdir", too.
|
|
configureFlags = [
|
|
"--without-x"
|
|
"ac_cv_path_PERL=${buildPackages.perl}/bin/perl"
|
|
] ++ lib.optionals enableGhostscript [
|
|
"--with-gs=${ghostscript}/bin/gs"
|
|
] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
"gl_cv_func_signbit=yes"
|
|
];
|
|
|
|
makeFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
# Trick to get the build system find the proper 'native' groff
|
|
# http://www.mail-archive.com/bug-groff@gnu.org/msg01335.html
|
|
"GROFF_BIN_PATH=${buildPackages.groff}/bin"
|
|
"GROFFBIN=${buildPackages.groff}/bin/groff"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
postInstall = ''
|
|
for f in 'man.local' 'mdoc.local'; do
|
|
cat '${./site.tmac}' >>"$out/share/groff/site-tmac/$f"
|
|
done
|
|
|
|
moveToOutput bin/gropdf $perl
|
|
moveToOutput bin/pdfmom $perl
|
|
moveToOutput bin/roff2text $perl
|
|
moveToOutput bin/roff2pdf $perl
|
|
moveToOutput bin/roff2ps $perl
|
|
moveToOutput bin/roff2dvi $perl
|
|
moveToOutput bin/roff2ps $perl
|
|
moveToOutput bin/roff2html $perl
|
|
moveToOutput bin/glilypond $perl
|
|
moveToOutput bin/mmroff $perl
|
|
moveToOutput bin/roff2x $perl
|
|
moveToOutput bin/afmtodit $perl
|
|
moveToOutput bin/gperl $perl
|
|
moveToOutput bin/chem $perl
|
|
|
|
moveToOutput bin/gpinyin $perl
|
|
moveToOutput lib/groff/gpinyin $perl
|
|
substituteInPlace $perl/bin/gpinyin \
|
|
--replace $out/lib/groff/gpinyin $perl/lib/groff/gpinyin
|
|
|
|
moveToOutput bin/groffer $perl
|
|
moveToOutput lib/groff/groffer $perl
|
|
substituteInPlace $perl/bin/groffer \
|
|
--replace $out/lib/groff/groffer $perl/lib/groff/groffer
|
|
|
|
moveToOutput bin/grog $perl
|
|
moveToOutput lib/groff/grog $perl
|
|
substituteInPlace $perl/bin/grog \
|
|
--replace $out/lib/groff/grog $perl/lib/groff/grog
|
|
|
|
find $perl/ -type f -print0 | xargs --null sed -i 's|${buildPackages.perl}|${perl}|'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.gnu.org/software/groff/";
|
|
description = "GNU Troff, a typesetting package that reads plain text and produces formatted output";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
longDescription = ''
|
|
groff is the GNU implementation of troff, a document formatting
|
|
system. Included in this release are implementations of troff,
|
|
pic, eqn, tbl, grn, refer, -man, -mdoc, -mom, and -ms macros,
|
|
and drivers for PostScript, TeX dvi format, HP LaserJet 4
|
|
printers, Canon CAPSL printers, HTML and XHTML format (beta
|
|
status), and typewriter-like devices. Also included is a
|
|
modified version of the Berkeley -me macros, the enhanced
|
|
version gxditview of the X11 xditview previewer, and an
|
|
implementation of the -mm macros.
|
|
'';
|
|
|
|
outputsToInstall = [ "out" "perl" ];
|
|
};
|
|
}
|