summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/kde
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
parent73779ab8d4bf97c775d84d9511944c43fd053e1a (diff)
kdeApplications.kaccounts-integration: init 20.08.2
Diffstat (limited to 'pkgs/applications/kde')
-rw-r--r--pkgs/applications/kde/default.nix1
-rw-r--r--pkgs/applications/kde/kaccounts-integration.nix23
2 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/kde/default.nix b/pkgs/applications/kde/default.nix
index 1f0f7b5ace3f..c0e58abbac2f 100644
--- a/pkgs/applications/kde/default.nix
+++ b/pkgs/applications/kde/default.nix
@@ -88,6 +88,7 @@ let
gwenview = callPackage ./gwenview.nix {};
incidenceeditor = callPackage ./incidenceeditor.nix {};
k3b = callPackage ./k3b.nix {};
+ kaccounts-integration = callPackage ./kaccounts-integration.nix {};
kaddressbook = callPackage ./kaddressbook.nix {};
kalarm = callPackage ./kalarm.nix {};
kalarmcal = callPackage ./kalarmcal.nix {};
diff --git a/pkgs/applications/kde/kaccounts-integration.nix b/pkgs/applications/kde/kaccounts-integration.nix
new file mode 100644
index 000000000000..9ad1b05dd926
--- /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
+ ];
+}