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