Unverified Commit c73ab916 authored by Philip Taron's avatar Philip Taron Committed by GitHub
Browse files

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

parents 056204fa 1f3f3bc4
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -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;