aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/kde/kteatime.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/kde/kteatime.nix')
-rw-r--r--nixpkgs/pkgs/applications/kde/kteatime.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/kde/kteatime.nix b/nixpkgs/pkgs/applications/kde/kteatime.nix
new file mode 100644
index 00000000000..a69cb991acc
--- /dev/null
+++ b/nixpkgs/pkgs/applications/kde/kteatime.nix
@@ -0,0 +1,23 @@
+{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kconfig, kcrash, kiconthemes, knotifyconfig }:
+
+mkDerivation {
+ name = "kteatime";
+ meta = with lib; {
+ homepage = "https://kde.org/applications/en/utilities/org.kde.kteatime";
+ description = "KTeaTime is a handy timer for steeping tea";
+ maintainers = with maintainers; [ freezeboy ];
+ license = licenses.gpl2Plus;
+ platforms = platforms.linux;
+ };
+ nativeBuildInputs = [
+ extra-cmake-modules
+ ];
+ buildInputs = [
+ kdoctools
+ ki18n
+ kconfig
+ kcrash
+ kiconthemes
+ knotifyconfig
+ ];
+}