summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/plasma-mobile/keysmith.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/plasma-mobile/keysmith.nix')
-rw-r--r--pkgs/applications/plasma-mobile/keysmith.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/applications/plasma-mobile/keysmith.nix b/pkgs/applications/plasma-mobile/keysmith.nix
new file mode 100644
index 000000000000..eaca7f68e24b
--- /dev/null
+++ b/pkgs/applications/plasma-mobile/keysmith.nix
@@ -0,0 +1,39 @@
+{ lib
+, mkDerivation
+
+, cmake
+, extra-cmake-modules
+
+, kdbusaddons
+, ki18n
+, kirigami2
+, kwindowsystem
+, libsodium
+, qtquickcontrols2
+}:
+
+mkDerivation rec {
+ pname = "keysmith";
+
+ nativeBuildInputs = [
+ cmake
+ extra-cmake-modules
+ ];
+
+ buildInputs = [
+ kdbusaddons
+ ki18n
+ kirigami2
+ kwindowsystem
+ libsodium
+ qtquickcontrols2
+ ];
+
+ meta = with lib; {
+ description = "OTP client for Plasma Mobile and Desktop";
+ license = licenses.gpl3;
+ homepage = "https://github.com/KDE/keysmith";
+ maintainers = with maintainers; [ samueldr shamilton ];
+ platforms = platforms.linux;
+ };
+}