about summary refs log tree commit diff
path: root/pkgs/applications/kde/kwalletmanager.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/kde/kwalletmanager.nix')
-rw-r--r--pkgs/applications/kde/kwalletmanager.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/applications/kde/kwalletmanager.nix b/pkgs/applications/kde/kwalletmanager.nix
new file mode 100644
index 000000000000..03c2ab3853a1
--- /dev/null
+++ b/pkgs/applications/kde/kwalletmanager.nix
@@ -0,0 +1,36 @@
+{ lib
+, kdeApp
+, kdeWrapper
+, ecm
+, kdoctools
+, kauth
+, kcmutils
+, kconfigwidgets
+, kcoreaddons
+, kdbusaddons
+, kdelibs4support
+, kxmlgui
+}:
+
+let
+  unwrapped = kdeApp {
+    name = "kwalletmanager";
+    meta = {
+      license = with lib.licenses; [ gpl2 ];
+      maintainers = with lib.maintainers; [ fridh ];
+    };
+    nativeBuildInputs = [ ecm kdoctools ];
+    propagatedBuildInputs = [
+      kauth
+      kcmutils
+      kconfigwidgets
+      kcoreaddons
+      kdbusaddons
+      kdelibs4support
+      kxmlgui
+    ];
+  };
+in kdeWrapper {
+  inherit unwrapped;
+  targets = ["bin/kwalletmanager5"];
+}