mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
33 lines
987 B
Nix
33 lines
987 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "man-pages";
|
|
version = "5.09";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/docs/man-pages/${pname}-${version}.tar.xz";
|
|
sha256 = "1whbxim4diyan97y9pz9k4ck16rmjalw5i1m0dg6ycv3pxv386nz";
|
|
};
|
|
|
|
makeFlags = [ "MANDIR=$(out)/share/man" ];
|
|
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 = "http://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
|
|
};
|
|
}
|