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

27 lines
736 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2015-04-20 12:46:56 +00:00
name = "man-pages-${version}";
2017-08-12 22:23:34 +00:00
version = "4.12";
2012-11-05 10:42:05 +00:00
src = fetchurl {
2013-03-09 00:49:53 +00:00
url = "mirror://kernel/linux/docs/man-pages/${name}.tar.xz";
2017-08-12 22:23:34 +00:00
sha256 = "6f6d79d991fed04e16e7c7a15705304b0b9d51de772c51c57428555039fbe093";
};
makeFlags = [ "MANDIR=$(out)/share/man" ];
postInstall = ''
# conflict with shadow-utils
rm $out/share/man/man5/passwd.5 \
$out/share/man/man3/getspnam.3
'';
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/;
2014-04-03 04:56:36 +00:00
repositories.git = http://git.kernel.org/pub/scm/docs/man-pages/man-pages;
platforms = with platforms; unix;
};
}