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