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