2011-02-09 14:32:20 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2006-08-08 02:09:27 +02:00
|
|
|
|
2008-10-12 16:24:51 +02:00
|
|
|
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
|
|
|
|
2006-08-08 02:09:27 +02: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";
|
2006-08-08 02:09:27 +02:00
|
|
|
};
|
2007-04-08 02:01:28 +02:00
|
|
|
|
2015-11-26 18:44:44 +01:00
|
|
|
makeFlags = [ "MANDIR=$(out)/share/man" ];
|
2008-01-24 17:56:56 +01:00
|
|
|
|
2015-04-17 00:03:42 +02:00
|
|
|
meta = with stdenv.lib; {
|
2008-01-24 17:56:56 +01:00
|
|
|
description = "Linux development manual pages";
|
2011-10-26 19:58:53 +02:00
|
|
|
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 ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = with platforms; unix;
|
2008-01-24 17:56:56 +01:00
|
|
|
};
|
2006-08-08 02:09:27 +02:00
|
|
|
}
|