2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2006-08-08 00:09:27 +00:00
|
|
|
|
2008-10-12 14:24:51 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "man-pages";
|
2021-12-09 16:43:52 +00:00
|
|
|
version = "5.13";
|
2012-11-05 10:42:05 +00:00
|
|
|
|
2006-08-08 00:09:27 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://kernel/linux/docs/man-pages/${pname}-${version}.tar.xz";
|
2021-12-09 16:43:52 +00:00
|
|
|
sha256 = "sha256-YU2uPv59/UgJhnY6KiqBeSFQMqWkUmwL5eiZol8Ja4s=";
|
2006-08-08 00:09:27 +00:00
|
|
|
};
|
2007-04-08 00:01:28 +00:00
|
|
|
|
2021-07-20 16:45:12 +00:00
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
2016-12-10 20:44:00 +00:00
|
|
|
postInstall = ''
|
|
|
|
# conflict with shadow-utils
|
|
|
|
rm $out/share/man/man5/passwd.5 \
|
|
|
|
$out/share/man/man3/getspnam.3
|
2020-09-29 00:08:16 +00:00
|
|
|
|
|
|
|
# The manpath executable looks up manpages from PATH. And this package won't
|
|
|
|
# appear in PATH unless it has a /bin folder
|
|
|
|
mkdir -p $out/bin
|
2016-12-10 20:44:00 +00:00
|
|
|
'';
|
2016-09-28 22:18:35 +00:00
|
|
|
outputDocdev = "out";
|
2008-01-24 16:56:56 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2008-01-24 16:56:56 +00:00
|
|
|
description = "Linux development manual pages";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.kernel.org/doc/man-pages/";
|
2018-08-17 21:37:37 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; unix;
|
2018-05-28 22:55:32 +00:00
|
|
|
priority = 30; # if a package comes with its own man page, prefer it
|
2008-01-24 16:56:56 +00:00
|
|
|
};
|
2006-08-08 00:09:27 +00:00
|
|
|
}
|