summary refs log tree commit diff
path: root/pkgs/applications/kde/kalarmcal.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-05-10 11:11:49 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-08-21 06:51:15 -0500
commit87588ff4831e05e178bf4c82fc9d0d874f7941e2 (patch)
treedc711340b436a433f222b677d44133fdde5347c1 /pkgs/applications/kde/kalarmcal.nix
parent7872516b99ebfb28d3762ce12bf47d029860f4c6 (diff)
downloadnixpkgs-87588ff4831e05e178bf4c82fc9d0d874f7941e2.tar
nixpkgs-87588ff4831e05e178bf4c82fc9d0d874f7941e2.tar.gz
nixpkgs-87588ff4831e05e178bf4c82fc9d0d874f7941e2.tar.bz2
nixpkgs-87588ff4831e05e178bf4c82fc9d0d874f7941e2.tar.lz
nixpkgs-87588ff4831e05e178bf4c82fc9d0d874f7941e2.tar.xz
nixpkgs-87588ff4831e05e178bf4c82fc9d0d874f7941e2.tar.zst
nixpkgs-87588ff4831e05e178bf4c82fc9d0d874f7941e2.zip
kalarmcal: init at 17.04.0
Diffstat (limited to 'pkgs/applications/kde/kalarmcal.nix')
-rw-r--r--pkgs/applications/kde/kalarmcal.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/applications/kde/kalarmcal.nix b/pkgs/applications/kde/kalarmcal.nix
new file mode 100644
index 00000000000..f2fb6f4d8bb
--- /dev/null
+++ b/pkgs/applications/kde/kalarmcal.nix
@@ -0,0 +1,19 @@
+{
+  mkDerivation, lib, kdepimTeam,
+  extra-cmake-modules, kdoctools,
+  akonadi, kcalcore, kdelibs4support, kholidays, kidentitymanagement,
+  kpimtextedit,
+}:
+
+mkDerivation {
+  name = "kalarmcal";
+  meta = {
+    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
+    maintainers = kdepimTeam;
+  };
+  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+  propagatedBuildInputs = [
+    akonadi kcalcore kdelibs4support kholidays kidentitymanagement kpimtextedit
+  ];
+  outputs = [ "out" "dev" ];
+}