nixpkgs/pkgs/tools/misc/mandoc/default.nix

72 lines
2.4 KiB
Nix
Raw Normal View History

2021-09-19 19:53:16 +02:00
{ lib, stdenv, fetchurl, zlib, perl }:
2016-09-11 22:18:13 +02:00
let
# check if we can execute binaries for the host platform on the build platform
# even though the platforms aren't the same. mandoc can't be cross compiled
# (easily) because of its configurePhase, but we want to allow “native” cross
# such as pkgsLLVM and pkgsStatic.
executableCross = stdenv.hostPlatform.isCompatible stdenv.buildPlatform;
# Name of an UTF-8 locale _always_ present at runtime, used for UTF-8 support
# (locale set by the user may differ). This would usually be C.UTF-8, but
# darwin has no such locale.
utf8Locale =
if stdenv.hostPlatform.isDarwin
then "en_US.UTF-8"
else "C.UTF-8";
in
assert executableCross ||
throw "mandoc relies on executing compiled programs in configurePhase, can't cross compile";
2016-09-11 22:18:13 +02:00
stdenv.mkDerivation rec {
pname = "mandoc";
2021-09-19 19:49:11 +02:00
version = "1.14.6";
2016-09-11 22:18:13 +02:00
src = fetchurl {
2018-08-27 03:12:59 +02:00
url = "https://mandoc.bsd.lv/snapshots/mandoc-${version}.tar.gz";
2021-09-19 19:49:11 +02:00
sha256 = "8bf0d570f01e70a6e124884088870cbed7537f36328d512909eb10cd53179d9c";
2016-09-11 22:18:13 +02:00
};
buildInputs = [ zlib ];
configureLocal = ''
MANPATH_DEFAULT="/run/current-system/sw/share/man"
MANPATH_BASE="$MANPATH_DEFAULT"
2016-09-11 22:18:13 +02:00
OSNAME="NixOS"
PREFIX="$out"
LD_OHASH="-lutil"
# Use symlinks instead of hardlinks (more commonly used in nixpkgs)
LN="ln -sf"
# nixpkgs doesn't have sbin, install makewhatis to bin
SBINDIR="$PREFIX/bin"
2018-08-27 09:21:43 +02:00
CC=${stdenv.cc.targetPrefix}cc
AR=${stdenv.cc.bintools.targetPrefix}ar
# Bypass the locale(1)-based check for UTF-8 support since it causes trouble:
# * We only have meaningful locale(1) implementations for glibc and macOS
# * NetBSD's locale(1) (used for macOS) depends on mandoc
# * Sandbox and locales cause all kinds of trouble
# * build and host libc (and thus locale handling) may differ
HAVE_WCHAR=1
UTF8_LOCALE=${utf8Locale}
2016-09-11 22:18:13 +02:00
'';
preConfigure = ''
printf '%s' "$configureLocal" > configure.local
2016-09-11 22:18:13 +02:00
'';
doCheck = executableCross;
2021-09-19 19:53:16 +02:00
checkTarget = "regress";
checkInputs = [ perl ];
preCheck = "patchShebangs --build regress/regress.pl";
meta = with lib; {
homepage = "https://mandoc.bsd.lv/";
2016-09-11 22:18:13 +02:00
description = "suite of tools compiling mdoc and man";
2018-08-27 03:12:59 +02:00
downloadPage = "http://mandoc.bsd.lv/snapshots/";
2016-09-11 22:18:13 +02:00
license = licenses.bsd3;
platforms = platforms.all;
2021-09-19 19:52:38 +02:00
maintainers = with maintainers; [ bb010g ramkromberg sternenseemann ];
2016-09-11 22:18:13 +02:00
};
}