25 lines
291 B
Nix
25 lines
291 B
Nix
{
|
|
mkKdeDerivation,
|
|
qt5compat,
|
|
qttools,
|
|
kauth,
|
|
acl,
|
|
attr,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kio";
|
|
|
|
patches = [
|
|
# Allow loading kio-admin from the store
|
|
./allow-admin-from-store.patch
|
|
];
|
|
|
|
extraBuildInputs = [
|
|
qt5compat
|
|
qttools
|
|
kauth
|
|
acl
|
|
attr
|
|
];
|
|
}
|