summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/kde/kigo.nix
blob: 24ce5cfbb52d61ec403a7cbf9949e90fd3ea6230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames, knewstuff }:

mkDerivation {
  name = "kigo";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/games/org/kde.kigo";
    description = "Kigo est une implémentation libre du jeu de Go";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    libkdegames
    knewstuff
    kdoctools
    ki18n
    kio
  ];
}