about summary refs log tree commit diff
path: root/pkgs/applications/kde/kbounce.nix
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-07-25 20:58:53 +0200
committerfreezeboy <freezeboy@users.noreply.github.com>2020-08-21 10:04:06 +0200
commita9a64375ae32bd7fd08bff9b5bd2af52281188e9 (patch)
treecdade50d0edd5a7a140210ae16d134db0505db9c /pkgs/applications/kde/kbounce.nix
parentbeb9180019b9444443693acc7347c532de642115 (diff)
kbounce: init at 20.04.3
Diffstat (limited to 'pkgs/applications/kde/kbounce.nix')
-rw-r--r--pkgs/applications/kde/kbounce.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/kde/kbounce.nix b/pkgs/applications/kde/kbounce.nix
new file mode 100644
index 0000000000000..a24d215518076
--- /dev/null
+++ b/pkgs/applications/kde/kbounce.nix
@@ -0,0 +1,22 @@
+{ mkDerivation, lib, extra-cmake-modules, libkdegames, kconfig, kcrash, kio, ki18n }:
+
+mkDerivation {
+  name = "kbounce";
+  meta = with lib; {
+    homepage = "https://kde.org/applications/en/games/org.kde.kbounce";
+    description = "KBounce is a single player arcade game with the elements of puzzle";
+    maintainers = with maintainers; [ freezeboy ];
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
+  };
+  nativeBuildInputs = [
+    extra-cmake-modules
+  ];
+  buildInputs = [
+    libkdegames
+    kconfig
+    kcrash
+    kio
+    ki18n
+  ];
+}