aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/kde/kteatime.nix
blob: a69cb991acc0a9f34db2bdf4fb2316df851a8a7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
  ];
}