nixpkgs/pkgs/data/documentation/man-pages/default.nix

33 lines
989 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "man-pages";
2020-08-14 13:14:32 +00:00
version = "5.08";
2012-11-05 10:42:05 +00:00
src = fetchurl {
url = "mirror://kernel/linux/docs/man-pages/${pname}-${version}.tar.xz";
2020-08-14 13:14:32 +00:00
sha256 = "1xzp3f6wvw3wplk1a1x09zfv0jp0pdc9wh95czndh3h8z0qwv9yf";
};
makeFlags = [ "MANDIR=$(out)/share/man" ];
postInstall = ''
# conflict with shadow-utils
rm $out/share/man/man5/passwd.5 \
$out/share/man/man3/getspnam.3
# The manpath executable looks up manpages from PATH. And this package won't
# appear in PATH unless it has a /bin folder
mkdir -p $out/bin
'';
outputDocdev = "out";
2015-04-16 22:03:42 +00:00
meta = with stdenv.lib; {
description = "Linux development manual pages";
homepage = "https://www.kernel.org/doc/man-pages/";
repositories.git = "http://git.kernel.org/pub/scm/docs/man-pages/man-pages";
2018-08-17 21:37:37 +00:00
license = licenses.gpl2Plus;
platforms = with platforms; unix;
priority = 30; # if a package comes with its own man page, prefer it
};
}