nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at fix-function-merge 21 lines 528 B view raw
1{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio }: 2 3mkDerivation { 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 ]; 21}