1{
2 mkDerivation,
3 lib,
4 extra-cmake-modules,
5 kdoctools,
6 ki18n,
7 kio,
8}:
9
10mkDerivation {
11 pname = "ktimer";
12 meta = with lib; {
13 homepage = "https://kde.org/applications/en/utilities/org.kde.ktimer";
14 description = "Little tool to execute programs after some time";
15 mainProgram = "ktimer";
16 maintainers = with maintainers; [ freezeboy ];
17 license = licenses.gpl2Plus;
18 platforms = platforms.linux;
19 };
20 nativeBuildInputs = [
21 extra-cmake-modules
22 ];
23 buildInputs = [
24 kdoctools
25 ki18n
26 kio
27 ];
28}