summary refs log tree commit diff
path: root/pkgs/applications/kde/akonadi-calendar.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-05-10 11:37:46 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-08-21 06:51:15 -0500
commit5e860b04610fa1e766929d11807fdd20b6fbe18d (patch)
tree693e2a6b436e7456f35fc49dacdfe8d5ba102849 /pkgs/applications/kde/akonadi-calendar.nix
parent87588ff4831e05e178bf4c82fc9d0d874f7941e2 (diff)
downloadnixpkgs-5e860b04610fa1e766929d11807fdd20b6fbe18d.tar
nixpkgs-5e860b04610fa1e766929d11807fdd20b6fbe18d.tar.gz
nixpkgs-5e860b04610fa1e766929d11807fdd20b6fbe18d.tar.bz2
nixpkgs-5e860b04610fa1e766929d11807fdd20b6fbe18d.tar.lz
nixpkgs-5e860b04610fa1e766929d11807fdd20b6fbe18d.tar.xz
nixpkgs-5e860b04610fa1e766929d11807fdd20b6fbe18d.tar.zst
nixpkgs-5e860b04610fa1e766929d11807fdd20b6fbe18d.zip
akonadi-calendar: init at 17.04.0
Diffstat (limited to 'pkgs/applications/kde/akonadi-calendar.nix')
-rw-r--r--pkgs/applications/kde/akonadi-calendar.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/kde/akonadi-calendar.nix b/pkgs/applications/kde/akonadi-calendar.nix
new file mode 100644
index 00000000000..ce6b6f75f93
--- /dev/null
+++ b/pkgs/applications/kde/akonadi-calendar.nix
@@ -0,0 +1,20 @@
+{
+  mkDerivation, lib, kdepimTeam,
+  extra-cmake-modules, kdoctools,
+  akonadi, akonadi-contacts, kcalcore, kcalutils, kcontacts,
+  kidentitymanagement, kio, kmailtransport,
+}:
+
+mkDerivation {
+  name = "akonadi-calendar";
+  meta = {
+    license = with lib.licenses; [ gpl2 lgpl21 ];
+    maintainers = kdepimTeam;
+  };
+  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+  propagatedBuildInputs = [
+    akonadi akonadi-contacts kcalcore kcalutils kcontacts kidentitymanagement
+    kio kmailtransport
+  ];
+  outputs = [ "out" "dev" ];
+}