about summary refs log tree commit diff
path: root/pkgs/kde/frameworks/kio/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/kde/frameworks/kio/default.nix')
-rw-r--r--pkgs/kde/frameworks/kio/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/kde/frameworks/kio/default.nix b/pkgs/kde/frameworks/kio/default.nix
new file mode 100644
index 000000000000..03c2da9e0f5a
--- /dev/null
+++ b/pkgs/kde/frameworks/kio/default.nix
@@ -0,0 +1,18 @@
+{
+  mkKdeDerivation,
+  qt5compat,
+  qttools,
+  acl,
+  attr,
+}:
+mkKdeDerivation {
+  pname = "kio";
+
+  patches = [
+    # Remove hardcoded smbd search path
+    # FIXME(later): discuss with upstream?
+    ./0001-Remove-impure-smbd-search-path.patch
+  ];
+
+  extraBuildInputs = [qt5compat qttools acl attr];
+}