Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

malcontent: 0.12.0 → 0.13.0

https://gitlab.freedesktop.org/pwithnall/malcontent/-/compare/0.12.0...0.13.0

+6 -6
+6 -6
pkgs/development/libraries/malcontent/default.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "malcontent"; 21 - version = "0.12.0"; 21 + version = "0.13.0"; 22 22 23 23 outputs = [ "bin" "out" "lib" "pam" "dev" "man" "installedTests" ]; 24 24 ··· 27 27 owner = "pwithnall"; 28 28 repo = "malcontent"; 29 29 rev = version; 30 - hash = "sha256-UK/WVqDMkwIqkTFFjzh7PRCA/Ej8Iyu33FasnAEApRs="; 30 + hash = "sha256-DVoTJrpXk5AoRMz+TxEP3NIAA/OOGRzZurLyGp0UBUo="; 31 31 }; 32 32 33 33 patches = [ ··· 70 70 71 71 postPatch = '' 72 72 substituteInPlace libmalcontent/tests/app-filter.c \ 73 - --replace "/usr/bin/true" "${coreutils}/bin/true" \ 74 - --replace "/bin/true" "${coreutils}/bin/true" \ 75 - --replace "/usr/bin/false" "${coreutils}/bin/false" \ 76 - --replace "/bin/false" "${coreutils}/bin/false" 73 + --replace-fail "/usr/bin/true" "${coreutils}/bin/true" \ 74 + --replace-fail "/bin/true" "${coreutils}/bin/true" \ 75 + --replace-fail "/usr/bin/false" "${coreutils}/bin/false" \ 76 + --replace-fail "/bin/false" "${coreutils}/bin/false" 77 77 ''; 78 78 79 79 postInstall = ''