mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
a05062d0dd
Build system has changed slightly, necessitating the change in makeFlags.
33 lines
978 B
Nix
33 lines
978 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "man-pages";
|
|
version = "5.12";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/docs/man-pages/${pname}-${version}.tar.xz";
|
|
sha256 = "07ip4f70nyxn24wy0fin6klq1hm1cjjvzr9zh5baqzssl1hckxbs";
|
|
};
|
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
|
postInstall = ''
|
|
# conflict with shadow-utils
|
|
rm $out/share/man/man5/passwd.5 \
|
|
$out/share/man/man3/getspnam.3
|
|
|
|
# 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
|
|
'';
|
|
outputDocdev = "out";
|
|
|
|
meta = with lib; {
|
|
description = "Linux development manual pages";
|
|
homepage = "https://www.kernel.org/doc/man-pages/";
|
|
repositories.git = "https://git.kernel.org/pub/scm/docs/man-pages/man-pages";
|
|
license = licenses.gpl2Plus;
|
|
platforms = with platforms; unix;
|
|
priority = 30; # if a package comes with its own man page, prefer it
|
|
};
|
|
}
|