aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/kde/bovo.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/kde/bovo.nix')
-rw-r--r--nixpkgs/pkgs/applications/kde/bovo.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/kde/bovo.nix b/nixpkgs/pkgs/applications/kde/bovo.nix
new file mode 100644
index 00000000000..4bd3113a051
--- /dev/null
+++ b/nixpkgs/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
+ ];
+}