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

27 lines
724 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2015-04-20 14:46:56 +02:00
name = "man-pages-${version}";
2018-01-28 16:23:59 +01:00
version = "4.14";
2012-11-05 11:42:05 +01:00
src = fetchurl {
2013-03-09 01:49:53 +01:00
url = "mirror://kernel/linux/docs/man-pages/${name}.tar.xz";
2018-01-28 16:23:59 +01:00
sha256 = "0wf9ymqxk1k5xwcl3n919p66a1aayif3x4cahj4w04y3k1wbhlih";
};
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-17 00:03:42 +02:00
meta = with stdenv.lib; {
description = "Linux development manual pages";
homepage = https://www.kernel.org/doc/man-pages/;
2014-04-03 06:56:36 +02:00
repositories.git = http://git.kernel.org/pub/scm/docs/man-pages/man-pages;
platforms = with platforms; unix;
};
}