kdePackages.ark: cherry-pick fix for temp directory cleanup

This commit is contained in:
K900 2024-07-15 21:37:20 +03:00
parent 8e4a87c54f
commit 9a2d00c2e0

View File

@ -1,11 +1,21 @@
{
mkKdeDerivation,
fetchpatch,
libarchive,
libzip,
}:
mkKdeDerivation {
pname = "ark";
# Backport fix to clean up temporary folders with Qt 6.7
# FIXME: remove in next update
patches = [
(fetchpatch {
url = "https://invent.kde.org/utilities/ark/-/commit/85c5e26f581cf011638a53e62b92e1da8fd55fcd.patch";
hash = "sha256-ZjVdKgFoGE0Jme8JhGVn7+PODJqdwHQhglrHzsxePf8=";
})
];
extraBuildInputs = [libarchive libzip];
meta.mainProgram = "ark";
}