Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 dune_3, 5 csexp, 6}: 7 8buildDunePackage { 9 pname = "dune-configurator"; 10 11 inherit (dune_3) src version patches; 12 13 # This fixes finding csexp 14 postPatch = '' 15 rm -rf vendor/pp vendor/csexp 16 ''; 17 18 minimalOCamlVersion = "4.05"; 19 20 dontAddPrefix = true; 21 22 propagatedBuildInputs = [ csexp ]; 23 24 meta = with lib; { 25 description = "Helper library for gathering system configuration"; 26 maintainers = [ ]; 27 license = licenses.mit; 28 }; 29}