Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 30 lines 554 B view raw
1{ 2 mkDerivation, 3 lib, 4 extra-cmake-modules, 5 kdoctools, 6 ki18n, 7 kio, 8 libkdegames, 9}: 10 11mkDerivation { 12 pname = "killbots"; 13 meta = with lib; { 14 homepage = "https://kde.org/applications/en/games/org.kde.killbots"; 15 description = "Game where you avoid robots"; 16 mainProgram = "killbots"; 17 maintainers = with maintainers; [ freezeboy ]; 18 license = licenses.gpl2Plus; 19 platforms = platforms.linux; 20 }; 21 nativeBuildInputs = [ 22 extra-cmake-modules 23 ]; 24 buildInputs = [ 25 libkdegames 26 kdoctools 27 ki18n 28 kio 29 ]; 30}