f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
17 lines
260 B
Nix
17 lines
260 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];
|
|
}
|