nixpkgs/pkgs/applications/kde/kigo.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
577 B
Nix
Raw Normal View History

2020-07-25 19:06:42 +00:00
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames, knewstuff }:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kigo";
2020-07-25 19:06:42 +00:00
meta = with lib; {
2020-08-28 07:23:23 +00:00
homepage = "https://kde.org/applications/en/games/org.kde.kigo";
description = "An open-source implementation of the popular Go game";
mainProgram = "kigo";
2020-07-25 19:06:42 +00:00
maintainers = with maintainers; [ freezeboy ];
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
libkdegames
knewstuff
kdoctools
ki18n
kio
];
}