nixpkgs/pkgs/applications/kde/kigo.nix

23 lines
551 B
Nix
Raw Permalink 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";
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
];
}