summary refs log tree commit diff
path: root/pkgs/applications/kde/bovo.nix
diff options
context:
space:
mode:
authorfreezeboy <freezeboy@users.noreply.github.com>2020-07-12 07:48:18 +0200
committerfreezeboy <freezeboy@users.noreply.github.com>2020-07-12 07:48:18 +0200
commit898563323d9425f7a75e925449600dd8e5748d72 (patch)
tree6dd8a70e551473d7640ca8781a1572cba38bfd17 /pkgs/applications/kde/bovo.nix
parent55d6b74f20afded296cc6fcfe7e31d10e18a98e1 (diff)
downloadnixpkgs-898563323d9425f7a75e925449600dd8e5748d72.tar
nixpkgs-898563323d9425f7a75e925449600dd8e5748d72.tar.gz
nixpkgs-898563323d9425f7a75e925449600dd8e5748d72.tar.bz2
nixpkgs-898563323d9425f7a75e925449600dd8e5748d72.tar.lz
nixpkgs-898563323d9425f7a75e925449600dd8e5748d72.tar.xz
nixpkgs-898563323d9425f7a75e925449600dd8e5748d72.tar.zst
nixpkgs-898563323d9425f7a75e925449600dd8e5748d72.zip
adding missing expression
Diffstat (limited to 'pkgs/applications/kde/bovo.nix')
-rw-r--r--pkgs/applications/kde/bovo.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/applications/kde/bovo.nix b/pkgs/applications/kde/bovo.nix
new file mode 100644
index 00000000000..4bd3113a051
--- /dev/null
+++ b/pkgs/applications/kde/bovo.nix
@@ -0,0 +1,28 @@
+{ mkDerivation, lib
+, libkdegames, extra-cmake-modules
+, kdeclarative, knewstuff
+}:
+
+mkDerivation {
+  name = "bovo";
+  meta = with lib; {
+    homepage = "https://kde.org/applications/en/games/org.kde.bovo";
+    description = "Five in a row application";
+    longDescription = ''
+      Bovo is a Gomoku (from Japanese 五目並べ - lit. "five points") like game for two players,
+      where the opponents alternate in placing their respective pictogram on the game board.
+      (Also known as: Connect Five, Five in a row, X and O, Naughts and Crosses)
+    '';
+    maintainers = with maintainers; [ freezeboy ];
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux;
+  };
+  nativeBuildInputs = [
+    extra-cmake-modules
+  ];
+  buildInputs = [
+    kdeclarative
+    knewstuff
+    libkdegames
+  ];
+}