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 05:46:56 -07:00
name = "man-pages-${version}";
2017-08-12 15:23:34 -07:00
version = "4.12";
2012-11-05 02:42:05 -08:00
src = fetchurl {
2013-03-08 16:49:53 -08:00
url = "mirror://kernel/linux/docs/man-pages/${name}.tar.xz";
2017-08-12 15:23:34 -07: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 15:03:42 -07:00
meta = with stdenv.lib; {
description = "Linux development manual pages";
homepage = https://www.kernel.org/doc/man-pages/;
2014-04-02 21:56:36 -07:00
repositories.git = http://git.kernel.org/pub/scm/docs/man-pages/man-pages;
2015-04-16 15:03:42 -07:00
maintainers = with maintainers; [ nckx ];
platforms = with platforms; unix;
};
}