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 05:46:56 -07:00
name = "man-pages-${version}";
2016-07-21 03:06:01 -07:00
version = "4.07";
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";
2016-07-21 03:06:01 -07:00
sha256 = "1vimj3va16plxmv46rw6nzw4m9l11hb7r1d217y1bjpd5q8nw8qz";
};
# keep developer docs separately (man2 and man3)
outputs = [ "out" "docdev" ];
makeFlags = [ "MANDIR=$(out)/share/man" ];
2016-05-11 06:16:32 -07:00
postFixup = ''
moveToOutput share/man/man2 "$docdev"
'';
2015-04-16 15:03:42 -07:00
meta = with stdenv.lib; {
description = "Linux development manual pages";
homepage = http://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;
};
}