about summary refs log tree commit diff
path: root/pkgs/applications/kde/ktimer.nix
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-08-21 10:39:04 +0200
committerfreezeboy <freezeboy@users.noreply.github.com>2020-08-21 10:39:04 +0200
commitf33b52669ee1df9edb3ea2e08879040de9b4a455 (patch)
treeab92054f3b0f9601e842a5f5650238403f50cae1 /pkgs/applications/kde/ktimer.nix
parent2a5afc55b52b9a3ec6d4a5a134ddb79c72d9c5b0 (diff)
ktimer: init at 20.04.3
Diffstat (limited to 'pkgs/applications/kde/ktimer.nix')
-rw-r--r--pkgs/applications/kde/ktimer.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/kde/ktimer.nix b/pkgs/applications/kde/ktimer.nix
new file mode 100644
index 0000000000000..aa755f35ce436
--- /dev/null
+++ b/pkgs/applications/kde/ktimer.nix
@@ -0,0 +1,20 @@
+{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio }:
+
+mkDerivation {
+  name = "ktimer";
+  meta = with lib; {
+    homepage = "https://kde.org/applications/en/utilities/org.kde.ktimer";
+    description = "KTimer is a little tool to execute programs after some time";
+    maintainers = with maintainers; [ freezeboy ];
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
+  };
+  nativeBuildInputs = [
+    extra-cmake-modules
+  ];
+  buildInputs = [
+    kdoctools
+    ki18n
+    kio
+  ];
+}