biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / kde / ktimer.nix
blobbc2d6494c134660d148ca65c0c0396bc0bf3f22b
1 { mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio }:
3 mkDerivation {
4   pname = "ktimer";
5   meta = with lib; {
6     homepage = "https://kde.org/applications/en/utilities/org.kde.ktimer";
7     description = "Little tool to execute programs after some time";
8     mainProgram = "ktimer";
9     maintainers = with maintainers; [ freezeboy ];
10     license = licenses.gpl2Plus;
11     platforms = platforms.linux;
12   };
13   nativeBuildInputs = [
14     extra-cmake-modules
15   ];
16   buildInputs = [
17     kdoctools
18     ki18n
19     kio
20   ];