aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/kde/bomber.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/kde/bomber.nix')
-rw-r--r--nixpkgs/pkgs/applications/kde/bomber.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/kde/bomber.nix b/nixpkgs/pkgs/applications/kde/bomber.nix
new file mode 100644
index 00000000000..c3f47780259
--- /dev/null
+++ b/nixpkgs/pkgs/applications/kde/bomber.nix
@@ -0,0 +1,30 @@
+{ mkDerivation, lib
+, libkdegames, extra-cmake-modules
+, kdeclarative, knewstuff
+}:
+
+mkDerivation {
+ name = "bomber";
+ meta = with lib; {
+ homepage = "https://kde.org/applications/en/games/org.kde.bomber";
+ description = "Bomber is a single player arcade game";
+ longDescription = ''
+ Bomber is a single player arcade game. The player is invading various
+ cities in a plane that is decreasing in height.
+
+ The goal of the game is to destroy all the buildings and advance to the next level.
+ Each level gets a bit harder by increasing the speed of the plane and the height of the buildings.
+ '';
+ maintainers = with maintainers; [ freezeboy ];
+ license = licenses.gpl2Plus;
+ platforms = platforms.linux;
+ };
+ nativeBuildInputs = [
+ extra-cmake-modules
+ ];
+ buildInputs = [
+ kdeclarative
+ knewstuff
+ libkdegames
+ ];
+}