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