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

42 lines
960 B
Nix
Raw Normal View History

2016-09-11 20:18:13 +00:00
{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
name = "mandoc-${version}";
version = "1.14.5";
2016-09-11 20:18:13 +00:00
src = fetchurl {
2018-08-27 01:12:59 +00:00
url = "https://mandoc.bsd.lv/snapshots/mandoc-${version}.tar.gz";
sha256 = "1xyqllxpjj1kimlipx11pzyywf5c25i4wmv0lqm7ph3gnlnb86c2";
2016-09-11 20:18:13 +00:00
};
buildInputs = [ zlib ];
configureLocal = ''
HAVE_WCHAR=1
MANPATH_DEFAULT="/run/current-system/sw/share/man"
OSNAME="NixOS"
PREFIX="$out"
HAVE_MANPATH=1
LD_OHASH="-lutil"
BUILD_DB=0
2018-08-27 07:21:43 +00:00
CC=${stdenv.cc.targetPrefix}cc
2016-09-11 20:18:13 +00:00
'';
2018-08-27 07:21:43 +00:00
patches = [
./remove-broken-cc-check.patch
];
2016-09-11 20:18:13 +00:00
preConfigure = ''
echo $configureLocal > configure.local
'';
meta = with stdenv.lib; {
2018-08-27 01:12:59 +00:00
homepage = https://mandoc.bsd.lv/;
2016-09-11 20:18:13 +00:00
description = "suite of tools compiling mdoc and man";
2018-08-27 01:12:59 +00:00
downloadPage = "http://mandoc.bsd.lv/snapshots/";
2016-09-11 20:18:13 +00:00
license = licenses.bsd3;
platforms = platforms.all;
2018-08-27 01:12:59 +00:00
maintainers = with maintainers; [ bb010g ramkromberg ];
2016-09-11 20:18:13 +00:00
};
}