nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 29 lines 471 B view raw
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 = { 25 description = "Helper library for gathering system configuration"; 26 maintainers = [ ]; 27 license = lib.licenses.mit; 28 }; 29}