Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 23 lines 524 B view raw
1{ lib, buildDunePackage, dune_3, csexp, stdune, ordering, pp, xdg, dyn }: 2 3buildDunePackage rec { 4 pname = "dune-rpc"; 5 inherit (dune_3) src version; 6 7 duneVersion = "3"; 8 9 dontAddPrefix = true; 10 11 propagatedBuildInputs = [ csexp stdune ordering pp xdg dyn ]; 12 13 preBuild = '' 14 rm -r vendor/csexp 15 ''; 16 17 meta = with lib; { 18 description = "Library to connect and control a running dune instance"; 19 inherit (dune_3.meta) homepage; 20 maintainers = with lib.maintainers; [ ]; 21 license = licenses.mit; 22 }; 23}