Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.11-beta 20 lines 361 B view raw
1{ lib, buildDunePackage, dune_3, dyn, ordering, csexp }: 2 3buildDunePackage { 4 pname = "stdune"; 5 inherit (dune_3) version src; 6 duneVersion = "3"; 7 8 dontAddPrefix = true; 9 10 propagatedBuildInputs = [ dyn ordering csexp ]; 11 12 preBuild = '' 13 rm -r vendor/csexp 14 ''; 15 16 meta = dune_3.meta // { 17 description = "Dune's unstable standard library"; 18 }; 19} 20