2024-02-29 20:09:43 +00:00
|
|
|
{
|
|
|
|
mkKdeDerivation,
|
|
|
|
qt5compat,
|
|
|
|
qttools,
|
|
|
|
acl,
|
|
|
|
attr,
|
|
|
|
}:
|
|
|
|
mkKdeDerivation {
|
|
|
|
pname = "kio";
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
# Remove hardcoded smbd search path
|
|
|
|
./0001-Remove-impure-smbd-search-path.patch
|
2024-06-20 14:57:18 +00:00
|
|
|
# When running a process through systemd, resolve the full path ourselves
|
|
|
|
./early-resolve-executables.diff
|
|
|
|
# FIXME(later): discuss with upstream?
|
2024-02-29 20:09:43 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
extraBuildInputs = [qt5compat qttools acl attr];
|
|
|
|
}
|