about summary refs log tree commit diff
path: root/pkgs/applications/kde/killbots.nix
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-07-25 21:11:44 +0200
committerfreezeboy <freezeboy@users.noreply.github.com>2020-08-21 10:09:20 +0200
commit05ec46b114f789500feb8b730246fc44a9ef44e1 (patch)
tree5449a8f31a06bf55d8f87ab6ec8e9e8cfc93071b /pkgs/applications/kde/killbots.nix
parent214647d544f82380a5db7c5f357fcf1f3a2f0ffb (diff)
killbots: init at 20.04.3
Diffstat (limited to 'pkgs/applications/kde/killbots.nix')
-rw-r--r--pkgs/applications/kde/killbots.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/kde/killbots.nix b/pkgs/applications/kde/killbots.nix
new file mode 100644
index 0000000000000..ec9b6de82c905
--- /dev/null
+++ b/pkgs/applications/kde/killbots.nix
@@ -0,0 +1,21 @@
+{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames }:
+
+mkDerivation {
+  name = "killbots";
+  meta = with lib; {
+    homepage = "https://kde.org/applications/en/games/org.kde.killbots";
+    description = "A game where you avoid robots";
+    maintainers = with maintainers; [ freezeboy ];
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
+  };
+  nativeBuildInputs = [
+    extra-cmake-modules
+  ];
+  buildInputs = [
+    libkdegames
+    kdoctools
+    ki18n
+    kio
+  ];
+}