Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 25 lines 442 B view raw
1{ lib, buildDunePackage, dune_3, stdune }: 2 3buildDunePackage rec { 4 pname = "dune-private-libs"; 5 6 duneVersion = "3"; 7 8 inherit (dune_3) src version; 9 10 minimalOCamlVersion = "4.08"; 11 12 dontAddPrefix = true; 13 14 propagatedBuildInputs = [ stdune ]; 15 16 preBuild = '' 17 rm -r vendor/csexp 18 ''; 19 20 meta = with lib; { 21 description = "Private libraries of Dune"; 22 maintainers = [ maintainers.marsam ]; 23 license = licenses.mit; 24 }; 25}