malcontent: 0.12.0 → 0.13.0

https://gitlab.freedesktop.org/pwithnall/malcontent/-/compare/0.12.0...0.13.0
This commit is contained in:
Jan Tojnar 2024-12-10 06:37:45 +01:00
parent 953f377e92
commit fa5fd554c6

View File

@ -18,7 +18,7 @@
stdenv.mkDerivation rec {
pname = "malcontent";
version = "0.12.0";
version = "0.13.0";
outputs = [ "bin" "out" "lib" "pam" "dev" "man" "installedTests" ];
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
owner = "pwithnall";
repo = "malcontent";
rev = version;
hash = "sha256-UK/WVqDMkwIqkTFFjzh7PRCA/Ej8Iyu33FasnAEApRs=";
hash = "sha256-DVoTJrpXk5AoRMz+TxEP3NIAA/OOGRzZurLyGp0UBUo=";
};
patches = [
@ -70,10 +70,10 @@ stdenv.mkDerivation rec {
postPatch = ''
substituteInPlace libmalcontent/tests/app-filter.c \
--replace "/usr/bin/true" "${coreutils}/bin/true" \
--replace "/bin/true" "${coreutils}/bin/true" \
--replace "/usr/bin/false" "${coreutils}/bin/false" \
--replace "/bin/false" "${coreutils}/bin/false"
--replace-fail "/usr/bin/true" "${coreutils}/bin/true" \
--replace-fail "/bin/true" "${coreutils}/bin/true" \
--replace-fail "/usr/bin/false" "${coreutils}/bin/false" \
--replace-fail "/bin/false" "${coreutils}/bin/false"
'';
postInstall = ''