man-pages: 6.15 -> 6.16 (#456813)

This commit is contained in:
Philip Taron
2025-10-31 15:38:02 +00:00
committed by GitHub
+9 -3
View File
@@ -3,19 +3,25 @@
stdenv,
fetchurl,
directoryListingUpdater,
gawk,
man,
pcre2,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "man-pages";
version = "6.15";
version = "6.16";
src = fetchurl {
url = "mirror://kernel/linux/docs/man-pages/man-pages-${finalAttrs.version}.tar.xz";
hash = "sha256-A9jr9hi9XfV8tL81Xvo/TNOgC3ce/WI9T9BCtdzrRGU=";
hash = "sha256-jiR6vXXNgICc/ghpbIG4xwaQWDsEV0lISyQvtDYx16M=";
};
nativeInstallCheckInputs = [ man ];
nativeInstallCheckInputs = [
gawk
man
pcre2
];
dontBuild = true;
enableParallelInstalling = true;