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

36 lines
897 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, zlib }:
2016-09-11 23:18:13 +03:00
stdenv.mkDerivation rec {
pname = "mandoc";
2021-09-19 20:49:11 +03:00
version = "1.14.6";
2016-09-11 23:18:13 +03:00
src = fetchurl {
2018-08-27 04:12:59 +03:00
url = "https://mandoc.bsd.lv/snapshots/mandoc-${version}.tar.gz";
2021-09-19 20:49:11 +03:00
sha256 = "8bf0d570f01e70a6e124884088870cbed7537f36328d512909eb10cd53179d9c";
2016-09-11 23:18:13 +03:00
};
buildInputs = [ zlib ];
configureLocal = ''
HAVE_WCHAR=1
MANPATH_DEFAULT="/run/current-system/sw/share/man"
OSNAME="NixOS"
PREFIX="$out"
LD_OHASH="-lutil"
2018-08-27 10:21:43 +03:00
CC=${stdenv.cc.targetPrefix}cc
2016-09-11 23:18:13 +03:00
'';
preConfigure = ''
printf '%s' "$configureLocal" > configure.local
2016-09-11 23:18:13 +03:00
'';
meta = with lib; {
homepage = "https://mandoc.bsd.lv/";
2016-09-11 23:18:13 +03:00
description = "suite of tools compiling mdoc and man";
2018-08-27 04:12:59 +03:00
downloadPage = "http://mandoc.bsd.lv/snapshots/";
2016-09-11 23:18:13 +03:00
license = licenses.bsd3;
platforms = platforms.all;
2021-09-19 20:52:38 +03:00
maintainers = with maintainers; [ bb010g ramkromberg sternenseemann ];
2016-09-11 23:18:13 +03:00
};
}