2020-08-21 08:43:53 +00:00
|
|
|
{
|
|
|
|
mkDerivation,
|
|
|
|
lib,
|
|
|
|
extra-cmake-modules,
|
|
|
|
kdoctools,
|
|
|
|
ki18n,
|
|
|
|
kconfig,
|
|
|
|
kcrash,
|
|
|
|
kiconthemes,
|
|
|
|
knotifyconfig,
|
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation {
|
2020-12-24 23:05:07 +00:00
|
|
|
pname = "kteatime";
|
2020-08-21 08:43:53 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://kde.org/applications/en/utilities/org.kde.kteatime";
|
2020-10-26 04:08:40 +00:00
|
|
|
description = "Handy timer for steeping tea";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "kteatime";
|
2020-08-21 08:43:53 +00:00
|
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
|
|
extra-cmake-modules
|
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
kdoctools
|
|
|
|
ki18n
|
|
|
|
kconfig
|
|
|
|
kcrash
|
|
|
|
kiconthemes
|
|
|
|
knotifyconfig
|
|
|
|
];
|
|
|
|
}
|