Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 34 lines 602 B view raw
1{ 2 mkDerivation, 3 lib, 4 extra-cmake-modules, 5 kdoctools, 6 ki18n, 7 kio, 8 kplotting, 9 plasma-framework, 10 libkdegames, 11}: 12 13mkDerivation { 14 pname = "knights"; 15 meta = with lib; { 16 homepage = "https://kde.org/applications/en/games/org.kde.knights"; 17 description = "Chess game"; 18 mainProgram = "knights"; 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 plasma-framework 29 kplotting 30 kdoctools 31 ki18n 32 kio 33 ]; 34}