Unverified Commit c42a5af2 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #300797 from trofi/man-pages-update

man-pages: 6.05.01 -> 6.7
parents 38475aff 3cf7d830
Loading
Loading
Loading
Loading
+7 −12
Original line number Diff line number Diff line
@@ -2,26 +2,21 @@

stdenv.mkDerivation rec {
  pname = "man-pages";
  version = "6.05.01";
  version = "6.7";

  src = fetchurl {
    url = "mirror://kernel/linux/docs/man-pages/${pname}-${version}.tar.xz";
    sha256 = "sha256-uWq2tEpojJHRtXLlL+zlGeHP0rtMM/5wFPw/0e8/nK4=";
    hash = "sha256-gkA61LwXqtuST2hji3nWkwssvVUVMSSKepaId52077I=";
  };

  makeFlags = [ "prefix=$(out)" ];
  makeFlags = [
    # Clobber /usr/bin/env with the one in PATH.
    "SHELL=env"
    "prefix=${placeholder "out"}"
  ];

  dontBuild = true;

  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";

  enableParallelInstalling = true;