2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2006-08-08 01:09:27 +01:00
|
|
|
|
2008-10-12 15:24:51 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "man-pages";
|
2021-03-25 20:17:11 +00:00
|
|
|
version = "5.11";
|
2012-11-05 10:42:05 +00:00
|
|
|
|
2006-08-08 01:09:27 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://kernel/linux/docs/man-pages/${pname}-${version}.tar.xz";
|
2021-03-25 20:17:11 +00:00
|
|
|
sha256 = "sha256-PtpdzlGEWZ7Dfa40lM+WTFUDYumkH7ckeS2mEL2xPKo=";
|
2006-08-08 01:09:27 +01:00
|
|
|
};
|
2007-04-08 01:01:28 +01:00
|
|
|
|
2015-11-26 17:44:44 +00:00
|
|
|
makeFlags = [ "MANDIR=$(out)/share/man" ];
|
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 01:08:16 +01: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 23:18:35 +01: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 02:11:51 +01:00
|
|
|
homepage = "https://www.kernel.org/doc/man-pages/";
|
|
|
|
repositories.git = "http://git.kernel.org/pub/scm/docs/man-pages/man-pages";
|
2018-08-17 22:37:37 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; unix;
|
2018-05-28 23:55:32 +01: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 01:09:27 +01:00
|
|
|
}
|