3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/documentation/man-pages/default.nix

28 lines
782 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2015-04-20 13:46:56 +01:00
name = "man-pages-${version}";
2017-08-12 23:23:34 +01: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 23:23:34 +01: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 23:03:42 +01:00
meta = with stdenv.lib; {
description = "Linux development manual pages";
homepage = https://www.kernel.org/doc/man-pages/;
2014-04-03 05:56:36 +01:00
repositories.git = http://git.kernel.org/pub/scm/docs/man-pages/man-pages;
2015-04-16 23:03:42 +01:00
maintainers = with maintainers; [ nckx ];
platforms = with platforms; unix;
};
}