about summary refs log tree commit diff
path: root/nixpkgs/pkgs/kde/frameworks/kio/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/kde/frameworks/kio/default.nix')
-rw-r--r--nixpkgs/pkgs/kde/frameworks/kio/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/kde/frameworks/kio/default.nix b/nixpkgs/pkgs/kde/frameworks/kio/default.nix
new file mode 100644
index 000000000000..6d5ba811a518
--- /dev/null
+++ b/nixpkgs/pkgs/kde/frameworks/kio/default.nix
@@ -0,0 +1,20 @@
+{
+  mkKdeDerivation,
+  qt5compat,
+  qttools,
+  acl,
+  attr,
+}:
+mkKdeDerivation {
+  pname = "kio";
+
+  patches = [
+    # Remove hardcoded smbd search path
+    ./0001-Remove-impure-smbd-search-path.patch
+    # When running a process through systemd, resolve the full path ourselves
+    ./early-resolve-executables.diff
+    # FIXME(later): discuss with upstream?
+  ];
+
+  extraBuildInputs = [qt5compat qttools acl attr];
+}