nixpkgs/pkgs/applications/kde/kteatime.nix

24 lines
576 B
Nix
Raw Normal View History

2020-08-21 11:43:53 +03:00
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kconfig, kcrash, kiconthemes, knotifyconfig }:
mkDerivation {
2020-12-25 02:05:07 +03:00
pname = "kteatime";
2020-08-21 11:43:53 +03:00
meta = with lib; {
homepage = "https://kde.org/applications/en/utilities/org.kde.kteatime";
description = "A handy timer for steeping tea";
2020-08-21 11:43:53 +03:00
maintainers = with maintainers; [ freezeboy ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
kdoctools
ki18n
kconfig
kcrash
kiconthemes
knotifyconfig
];
}