lol
0
fork

Configure Feed

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

at 24.11-pre 23 lines 567 B view raw
1{ mkDerivation, lib, extra-cmake-modules, kdoctools, libkdegames, kconfig, kcrash, kxmlgui }: 2 3mkDerivation { 4 pname = "ksquares"; 5 meta = with lib; { 6 homepage = "https://kde.org/applications/en/games/org.kde.ksquares"; 7 description = "A game of Dots and Boxes"; 8 mainProgram = "ksquares"; 9 maintainers = with maintainers; [ freezeboy ]; 10 license = licenses.gpl2Plus; 11 platforms = platforms.linux; 12 }; 13 nativeBuildInputs = [ 14 extra-cmake-modules 15 ]; 16 buildInputs = [ 17 kdoctools 18 libkdegames 19 kconfig 20 kcrash 21 kxmlgui 22 ]; 23}