Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 28 lines 541 B view raw
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}