about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2020-07-20 09:20:19 -0500
committerGitHub <noreply@github.com>2020-07-20 09:20:19 -0500
commitc24fda6dca0e917363d78f120e7a9017cdaaa2c3 (patch)
tree1d9c0dc75596da18b16908518cd2dcb4c62f8444 /pkgs/applications
parent38880a5ec2dcef30599105bfbf55dc2f287dc70e (diff)
parent268988a840e1e4b4dd2fcb0a62a095c46b87a4bf (diff)
Merge pull request #92882 from freezeboy/add-bomber
bomber: init at 19.12.3
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/kde/bomber.nix30
-rw-r--r--pkgs/applications/kde/default.nix3
2 files changed, 32 insertions, 1 deletions
diff --git a/pkgs/applications/kde/bomber.nix b/pkgs/applications/kde/bomber.nix
new file mode 100644
index 0000000000000..c3f4778025913
--- /dev/null
+++ b/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
+  ];
+}
diff --git a/pkgs/applications/kde/default.nix b/pkgs/applications/kde/default.nix
index 3fdc20b0c5ecc..7e33769983d3c 100644
--- a/pkgs/applications/kde/default.nix
+++ b/pkgs/applications/kde/default.nix
@@ -74,7 +74,8 @@ let
       akregator = callPackage ./akregator.nix {};
       ark = callPackage ./ark {};
       baloo-widgets = callPackage ./baloo-widgets.nix {};
-      bovo = callPackage ./bovo.nix {};
+      bovo = callPackage ./bovo.nix {};      
+      bomber = callPackage ./bomber.nix {};
       calendarsupport = callPackage ./calendarsupport.nix {};
       dolphin = callPackage ./dolphin.nix {};
       dolphin-plugins = callPackage ./dolphin-plugins.nix {};