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