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

22 lines
611 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2015-04-20 14:46:56 +02:00
name = "man-pages-${version}";
2016-07-21 12:06:01 +02:00
version = "4.07";
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";
2016-07-21 12:06:01 +02:00
sha256 = "1vimj3va16plxmv46rw6nzw4m9l11hb7r1d217y1bjpd5q8nw8qz";
};
makeFlags = [ "MANDIR=$(out)/share/man" ];
2015-04-17 00:03:42 +02:00
meta = with stdenv.lib; {
description = "Linux development manual pages";
homepage = http://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;
2015-04-17 00:03:42 +02:00
maintainers = with maintainers; [ nckx ];
platforms = with platforms; unix;
};
}