depot/third_party/nixpkgs/pkgs/development/ocaml-modules/macaddr/sexp.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

20 lines
406 B
Nix

{ buildDunePackage
, macaddr, ppx_sexp_conv, macaddr-cstruct, ounit2
}:
buildDunePackage {
pname = "macaddr-sexp";
inherit (macaddr) version src;
duneVersion = "3";
propagatedBuildInputs = [ ppx_sexp_conv ];
checkInputs = [ macaddr-cstruct ounit2 ];
doCheck = true;
meta = macaddr.meta // {
description = "Library for manipulation of MAC address representations using sexp";
};
}