nixpkgs/pkgs/applications/kde/kteatime.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
623 B
Nix
Raw Normal View History

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";
description = "Handy timer for steeping tea";
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
];
}