Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 35 lines 880 B view raw
1{ 2 mkDerivation, 3 lib, 4 libkdegames, 5 extra-cmake-modules, 6 kdeclarative, 7 knewstuff, 8}: 9 10mkDerivation { 11 pname = "bomber"; 12 meta = with lib; { 13 homepage = "https://apps.kde.org/bomber/"; 14 description = "Single player arcade game"; 15 mainProgram = "bomber"; 16 longDescription = '' 17 Bomber is a single player arcade game. The player is invading various 18 cities in a plane that is decreasing in height. 19 20 The goal of the game is to destroy all the buildings and advance to the next level. 21 Each level gets a bit harder by increasing the speed of the plane and the height of the buildings. 22 ''; 23 maintainers = with maintainers; [ freezeboy ]; 24 license = licenses.gpl2Plus; 25 platforms = platforms.linux; 26 }; 27 nativeBuildInputs = [ 28 extra-cmake-modules 29 ]; 30 buildInputs = [ 31 kdeclarative 32 knewstuff 33 libkdegames 34 ]; 35}