Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildDunePackage, 4 dune_3, 5 dune-private-libs, 6}: 7 8buildDunePackage { 9 pname = "dune-site"; 10 inherit (dune_3) src version; 11 12 duneVersion = "3"; 13 14 dontAddPrefix = true; 15 16 propagatedBuildInputs = [ dune-private-libs ]; 17 18 preBuild = '' 19 rm -r vendor/csexp 20 ''; 21 22 meta = with lib; { 23 description = "Library for embedding location information inside executable and libraries"; 24 inherit (dune_3.meta) homepage; 25 maintainers = [ ]; 26 license = licenses.mit; 27 }; 28}