Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildDunePackage, 3 macaddr, 4 ppx_sexp_conv, 5 macaddr-cstruct, 6 ounit2, 7}: 8 9buildDunePackage { 10 pname = "macaddr-sexp"; 11 12 inherit (macaddr) version src; 13 14 duneVersion = "3"; 15 16 propagatedBuildInputs = [ ppx_sexp_conv ]; 17 18 checkInputs = [ 19 macaddr-cstruct 20 ounit2 21 ]; 22 doCheck = true; 23 24 meta = macaddr.meta // { 25 description = "Library for manipulation of MAC address representations using sexp"; 26 }; 27}