depot/third_party/nixpkgs/pkgs/applications/kde/kigo.nix

32 lines
591 B
Nix

{
mkDerivation,
lib,
extra-cmake-modules,
kdoctools,
ki18n,
kio,
libkdegames,
knewstuff,
}:
mkDerivation {
pname = "kigo";
meta = with lib; {
homepage = "https://kde.org/applications/en/games/org.kde.kigo";
description = "Open-source implementation of the popular Go game";
mainProgram = "kigo";
maintainers = with maintainers; [ freezeboy ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
libkdegames
knewstuff
kdoctools
ki18n
kio
];
}