7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
22 lines
280 B
Nix
22 lines
280 B
Nix
{
|
|
mkKdeDerivation,
|
|
qt5compat,
|
|
qttools,
|
|
acl,
|
|
attr,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kio";
|
|
|
|
patches = [
|
|
# Remove hardcoded smbd search path
|
|
./0001-Remove-impure-smbd-search-path.patch
|
|
];
|
|
|
|
extraBuildInputs = [
|
|
qt5compat
|
|
qttools
|
|
acl
|
|
attr
|
|
];
|
|
}
|