mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
23 lines
280 B
Nix
23 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
|
|
];
|
|
}
|