2024-02-05 15:43:41 +00:00
|
|
|
{
|
|
|
|
mkKdeDerivation,
|
2024-07-15 19:37:20 +01:00
|
|
|
fetchpatch,
|
2024-02-05 15:43:41 +00:00
|
|
|
libarchive,
|
|
|
|
libzip,
|
|
|
|
}:
|
|
|
|
mkKdeDerivation {
|
|
|
|
pname = "ark";
|
|
|
|
|
2024-07-15 19:37:20 +01:00
|
|
|
# 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=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2024-02-05 15:43:41 +00:00
|
|
|
extraBuildInputs = [libarchive libzip];
|
2024-03-19 02:14:51 +00:00
|
|
|
meta.mainProgram = "ark";
|
2024-02-05 15:43:41 +00:00
|
|
|
}
|