Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildDunePackage, 3 dune_3, 4 ordering, 5}: 6 7buildDunePackage { 8 pname = "dyn"; 9 inherit (dune_3) version src; 10 duneVersion = "3"; 11 12 dontAddPrefix = true; 13 14 propagatedBuildInputs = [ ordering ]; 15 16 meta = dune_3.meta // { 17 description = "Dynamic type"; 18 }; 19}