Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 32 lines 594 B view raw
1{ 2 mkDerivation, 3 lib, 4 extra-cmake-modules, 5 libkdegames, 6 kconfig, 7 kcrash, 8 kio, 9 ki18n, 10}: 11 12mkDerivation { 13 pname = "kbounce"; 14 meta = with lib; { 15 homepage = "https://kde.org/applications/en/games/org.kde.kbounce"; 16 description = "Single player arcade game with the elements of puzzle"; 17 mainProgram = "kbounce"; 18 maintainers = with maintainers; [ freezeboy ]; 19 license = licenses.gpl2Plus; 20 platforms = platforms.linux; 21 }; 22 nativeBuildInputs = [ 23 extra-cmake-modules 24 ]; 25 buildInputs = [ 26 libkdegames 27 kconfig 28 kcrash 29 kio 30 ki18n 31 ]; 32}