Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 29 lines 470 B view raw
1{ 2 lib, 3 mkDerivation, 4 extra-cmake-modules, 5 libGLU, 6 kdoctools, 7 kdeclarative, 8 libkdegames, 9}: 10 11mkDerivation { 12 pname = "ksudoku"; 13 nativeBuildInputs = [ 14 extra-cmake-modules 15 kdoctools 16 ]; 17 buildInputs = [ 18 libGLU 19 kdeclarative 20 libkdegames 21 ]; 22 meta = { 23 homepage = "https://apps.kde.org/ksudoku/"; 24 description = "Suduko game"; 25 mainProgram = "ksudoku"; 26 license = with lib.licenses; [ gpl2 ]; 27 maintainers = [ ]; 28 }; 29}