mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 03:25:02 +00:00
24 lines
587 B
Nix
24 lines
587 B
Nix
|
{ 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
|
||
|
];
|
||
|
}
|