summary refs log tree commit diff
path: root/pkgs/applications/kde/kaccounts-integration.nix
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-09-17 23:39:27 +0200
committerElias Probst <mail@eliasprobst.eu>2020-12-31 01:29:25 +0100
commit0bc5689058dde8e219ce81356e7f890245529858 (patch)
tree587435e711767cbb56cf7102ad2f68dcb7bde67b /pkgs/applications/kde/kaccounts-integration.nix
parent73779ab8d4bf97c775d84d9511944c43fd053e1a (diff)
downloadnixpkgs-0bc5689058dde8e219ce81356e7f890245529858.tar
nixpkgs-0bc5689058dde8e219ce81356e7f890245529858.tar.gz
nixpkgs-0bc5689058dde8e219ce81356e7f890245529858.tar.bz2
nixpkgs-0bc5689058dde8e219ce81356e7f890245529858.tar.lz
nixpkgs-0bc5689058dde8e219ce81356e7f890245529858.tar.xz
nixpkgs-0bc5689058dde8e219ce81356e7f890245529858.tar.zst
nixpkgs-0bc5689058dde8e219ce81356e7f890245529858.zip
kdeApplications.kaccounts-integration: init 20.08.2
Diffstat (limited to 'pkgs/applications/kde/kaccounts-integration.nix')
-rw-r--r--pkgs/applications/kde/kaccounts-integration.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/kde/kaccounts-integration.nix b/pkgs/applications/kde/kaccounts-integration.nix
new file mode 100644
index 00000000000..9ad1b05dd92
--- /dev/null
+++ b/pkgs/applications/kde/kaccounts-integration.nix
@@ -0,0 +1,23 @@
+{ mkDerivation, lib, extra-cmake-modules, kdoctools, kcmutils, kcoreaddons, kwallet, accounts-qt, signond }:
+
+mkDerivation {
+  name = "kaccounts-integration";
+  meta = with lib; {
+    homepage = "https://community.kde.org/KTp/Setting_up_KAccounts";
+    description = "Online accounts integration";
+    maintainers = with maintainers; [ freezeboy ];
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
+  };
+  nativeBuildInputs = [
+    extra-cmake-modules
+  ];
+  buildInputs = [
+    kcmutils
+    kcoreaddons
+    kdoctools
+    kwallet
+    accounts-qt
+    signond
+  ];
+}