biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / kde / bomber.nix
blob59c6ab779cf35c2422d3427cda713eccce1c9cbc
1 { mkDerivation, lib
2 , libkdegames, extra-cmake-modules
3 , kdeclarative, knewstuff
4 }:
6 mkDerivation {
7   pname = "bomber";
8   meta = with lib; {
9     homepage = "https://apps.kde.org/bomber/";
10     description = "Single player arcade game";
11     mainProgram = "bomber";
12     longDescription = ''
13       Bomber is a single player arcade game. The player is invading various
14       cities in a plane that is decreasing in height.
16       The goal of the game is to destroy all the buildings and advance to the next level.
17       Each level gets a bit harder by increasing the speed of the plane and the height of the buildings.
18       '';
19     maintainers = with maintainers; [ freezeboy ];
20     license = licenses.gpl2Plus;
21     platforms = platforms.linux;
22   };
23   nativeBuildInputs = [
24     extra-cmake-modules
25   ];
26   buildInputs = [
27     kdeclarative
28     knewstuff
29     libkdegames
30   ];