lol
0
fork

Configure Feed

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

at 24.11-pre 27 lines 538 B view raw
1{ mkDerivation, lib 2, extra-cmake-modules 3, cmake 4, kdbusaddons 5, ki18n 6, kconfigwidgets 7, kcrash 8, kxmlgui 9, libkdegames 10}: 11 12mkDerivation { 13 pname = "kbreakout"; 14 meta = { 15 homepage = "https://apps.kde.org/kbreakout/"; 16 description = "Breakout-like game"; 17 mainProgram = "kbreakout"; 18 license = with lib.licenses; [ lgpl21 gpl3 ]; 19 }; 20 outputs = [ "out" "dev" ]; 21 nativeBuildInputs = [ 22 cmake extra-cmake-modules 23 ]; 24 propagatedBuildInputs = [ 25 kdbusaddons ki18n kconfigwidgets kcrash kxmlgui libkdegames 26 ]; 27}