28 lines
541 B
Nix
28 lines
541 B
Nix
{
|
|
mkDerivation,
|
|
lib,
|
|
extra-cmake-modules,
|
|
kdoctools,
|
|
ki18n,
|
|
kio,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "ktimer";
|
|
meta = with lib; {
|
|
homepage = "https://kde.org/applications/en/utilities/org.kde.ktimer";
|
|
description = "Little tool to execute programs after some time";
|
|
mainProgram = "ktimer";
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
kdoctools
|
|
ki18n
|
|
kio
|
|
];
|
|
}
|