mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
kdePackages.ark: cherry-pick fix for temp directory cleanup
This commit is contained in:
parent
8e4a87c54f
commit
9a2d00c2e0
@ -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";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user