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

24 lines
714 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2015-04-20 13:46:56 +01:00
name = "man-pages-${version}";
2016-03-16 04:31:45 +00:00
version = "4.05";
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";
2016-03-16 04:31:45 +00:00
sha256 = "03d6aqgvhcsyciwdhl50h9bwn53iivvd7rbnh8als2ia9jwm2026";
};
# keep developer docs separately (man2 and man3)
outputs = [ "out" "docdev" ];
makeFlags = [ "MANDIR=$(out)/share/man" ];
postFixup = ''moveToOutput share/man/man2 "$docdev" '';
2015-04-16 23:03:42 +01:00
meta = with stdenv.lib; {
description = "Linux development manual pages";
homepage = http://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 ];
};
}