1{
2 mkDerivation,
3 lib,
4 libkdegames,
5 extra-cmake-modules,
6 kdeclarative,
7 knewstuff,
8}:
9
10mkDerivation {
11 pname = "bovo";
12 meta = with lib; {
13 homepage = "https://apps.kde.org/bovo/";
14 description = "Five in a row application";
15 mainProgram = "bovo";
16 longDescription = ''
17 Bovo is a Gomoku (from Japanese 五目並べ - lit. "five points") like game for two players,
18 where the opponents alternate in placing their respective pictogram on the game board.
19 (Also known as: Connect Five, Five in a row, X and O, Naughts and Crosses)
20 '';
21 maintainers = with maintainers; [ freezeboy ];
22 license = licenses.gpl2Plus;
23 platforms = platforms.linux;
24 };
25 nativeBuildInputs = [
26 extra-cmake-modules
27 ];
28 buildInputs = [
29 kdeclarative
30 knewstuff
31 libkdegames
32 ];
33}