lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 22 lines 551 B view raw
1{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio, libkdegames, knewstuff }: 2 3mkDerivation { 4 pname = "kigo"; 5 meta = with lib; { 6 homepage = "https://kde.org/applications/en/games/org.kde.kigo"; 7 description = "An open-source implementation of the popular Go game"; 8 maintainers = with maintainers; [ freezeboy ]; 9 license = licenses.gpl2Plus; 10 platforms = platforms.linux; 11 }; 12 nativeBuildInputs = [ 13 extra-cmake-modules 14 ]; 15 buildInputs = [ 16 libkdegames 17 knewstuff 18 kdoctools 19 ki18n 20 kio 21 ]; 22}