about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/bovo.nix
blob: ae89a8e396f6df6ddfc128d3b1b081018d99410c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ mkDerivation, lib
, libkdegames, extra-cmake-modules
, kdeclarative, knewstuff
}:

mkDerivation {
  pname = "bovo";
  meta = with lib; {
    homepage = "https://apps.kde.org/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
  ];
}