Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 26 lines 558 B view raw
1{ 2 mkDerivation, 3 lib, 4 extra-cmake-modules, 5 libkdegames, 6 kdeclarative, 7}: 8 9mkDerivation { 10 pname = "kreversi"; 11 meta = with lib; { 12 homepage = "https://kde.org/applications/en/games/org.kde.kreversi"; 13 description = "Simple one player strategy game played against the computer"; 14 mainProgram = "kreversi"; 15 maintainers = with maintainers; [ freezeboy ]; 16 license = licenses.gpl2Plus; 17 platforms = platforms.linux; 18 }; 19 nativeBuildInputs = [ 20 extra-cmake-modules 21 ]; 22 buildInputs = [ 23 kdeclarative 24 libkdegames 25 ]; 26}