From d784094a8e52e6e5af419678fa04e5b7f531cf7a Mon Sep 17 00:00:00 2001 From: freezeboy Date: Fri, 10 Jul 2020 16:37:24 +0200 Subject: bomber: init at 19.12.3 --- pkgs/applications/kde/bomber.nix | 17 +++++++++++++++++ pkgs/applications/kde/default.nix | 1 + 2 files changed, 18 insertions(+) create mode 100644 pkgs/applications/kde/bomber.nix (limited to 'pkgs/applications') diff --git a/pkgs/applications/kde/bomber.nix b/pkgs/applications/kde/bomber.nix new file mode 100644 index 0000000000000..bccf45fd9da49 --- /dev/null +++ b/pkgs/applications/kde/bomber.nix @@ -0,0 +1,17 @@ +{ mkDerivation, lib +, libkdegames, extra-cmake-modules +, kdeclarative, knewstuff +}: + +mkDerivation { + name = "bomber"; + meta = with lib; { maintainers = with maintainers; [ freezeboy ]; }; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + kdeclarative + knewstuff + libkdegames + ]; +} diff --git a/pkgs/applications/kde/default.nix b/pkgs/applications/kde/default.nix index 82c653edda464..d51257dc01d23 100644 --- a/pkgs/applications/kde/default.nix +++ b/pkgs/applications/kde/default.nix @@ -74,6 +74,7 @@ let akregator = callPackage ./akregator.nix {}; ark = callPackage ./ark {}; baloo-widgets = callPackage ./baloo-widgets.nix {}; + bomber = callPackage ./bomber.nix {}; calendarsupport = callPackage ./calendarsupport.nix {}; dolphin = callPackage ./dolphin.nix {}; dolphin-plugins = callPackage ./dolphin-plugins.nix {}; -- cgit 1.4.1 From 27a198add63696ba02626b88a5856ef9491381cf Mon Sep 17 00:00:00 2001 From: freezeboy Date: Sat, 11 Jul 2020 16:55:33 +0200 Subject: fixup meta record --- pkgs/applications/kde/bomber.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'pkgs/applications') diff --git a/pkgs/applications/kde/bomber.nix b/pkgs/applications/kde/bomber.nix index bccf45fd9da49..c3f4778025913 100644 --- a/pkgs/applications/kde/bomber.nix +++ b/pkgs/applications/kde/bomber.nix @@ -5,7 +5,20 @@ mkDerivation { name = "bomber"; - meta = with lib; { maintainers = with maintainers; [ freezeboy ]; }; + 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 ]; -- cgit 1.4.1