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