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

27 lines
759 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2015-04-20 13:46:56 +01:00
name = "man-pages-${version}";
2016-07-21 11:06:01 +01:00
version = "4.07";
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-07-21 11:06:01 +01:00
sha256 = "1vimj3va16plxmv46rw6nzw4m9l11hb7r1d217y1bjpd5q8nw8qz";
};
# keep developer docs separately (man2 and man3)
outputs = [ "out" "docdev" ];
makeFlags = [ "MANDIR=$(out)/share/man" ];
2016-05-11 14:16:32 +01:00
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 ];
platforms = with platforms; unix;
};
}