Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / kde / bovo.nix
blobae89a8e396f6df6ddfc128d3b1b081018d99410c
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     longDescription = ''
12       Bovo is a Gomoku (from Japanese 五目並べ - lit. "five points") like game for two players,
13       where the opponents alternate in placing their respective pictogram on the game board.
14       (Also known as: Connect Five, Five in a row, X and O, Naughts and Crosses)
15     '';
16     maintainers = with maintainers; [ freezeboy ];
17     license = licenses.gpl2Plus;
18     platforms = platforms.linux;
19   };
20   nativeBuildInputs = [
21     extra-cmake-modules
22   ];
23   buildInputs = [
24     kdeclarative
25     knewstuff
26     libkdegames
27   ];