dotnet: improve language coverage of passthru.tests for dotnet sdks (#370789)
[NixPkgs.git] / pkgs / development / ocaml-modules / macaddr / sexp.nix
blob86d79dc215d6f2e4e0232fc771a02a547dcdea9f
2   buildDunePackage,
3   macaddr,
4   ppx_sexp_conv,
5   macaddr-cstruct,
6   ounit2,
7 }:
9 buildDunePackage {
10   pname = "macaddr-sexp";
12   inherit (macaddr) version src;
14   duneVersion = "3";
16   propagatedBuildInputs = [ ppx_sexp_conv ];
18   checkInputs = [
19     macaddr-cstruct
20     ounit2
21   ];
22   doCheck = true;
24   meta = macaddr.meta // {
25     description = "Library for manipulation of MAC address representations using sexp";
26   };