Merge pull request #92974 from freezeboy/add-bovo

bovo: init at 19.12.3

Changed files
+30 -1
pkgs
applications
top-level
+28
pkgs/applications/kde/bovo.nix
···
+
{ 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
+
];
+
}
+1
pkgs/applications/kde/default.nix
···
akregator = callPackage ./akregator.nix {};
ark = callPackage ./ark {};
baloo-widgets = callPackage ./baloo-widgets.nix {};
+
bovo = callPackage ./bovo.nix {};
calendarsupport = callPackage ./calendarsupport.nix {};
dolphin = callPackage ./dolphin.nix {};
dolphin-plugins = callPackage ./dolphin-plugins.nix {};
+1 -1
pkgs/top-level/all-packages.nix
···
recurseIntoAttrs (makeOverridable mkApplications attrs);
inherit (kdeApplications)
-
akonadi akregator ark dolphin dragon elisa ffmpegthumbs filelight gwenview k3b
+
akonadi akregator ark bovo dolphin dragon elisa ffmpegthumbs filelight gwenview k3b
kaddressbook kapptemplate kate kcachegrind kcalc kcharselect kcolorchooser kdenlive kdf kdialog
keditbookmarks kfind kget kgpg khelpcenter kig kleopatra kmail kmix kmplot kolourpaint kompare konsole yakuake
kpkpass kitinerary kontact korganizer krdc krfb ksystemlog ktouch kwalletmanager marble minuet okular spectacle;