biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / macaddr / sexp.nix
blob5d096dfececdb324352c532439e6cd2246fede2b
1 { lib, buildDunePackage
2 , macaddr, ppx_sexp_conv, macaddr-cstruct, ounit2
3 }:
5 buildDunePackage {
6   pname = "macaddr-sexp";
8   inherit (macaddr) version src;
10   duneVersion = "3";
12   propagatedBuildInputs = [ ppx_sexp_conv ];
14   checkInputs = [ macaddr-cstruct ounit2 ];
15   doCheck = true;
17   meta = macaddr.meta // {
18     description = "A library for manipulation of MAC address representations using sexp";
19   };