2020-06-25 21:22:21 +00:00
|
|
|
{ lib, buildDunePackage
|
2023-03-23 05:04:25 +00:00
|
|
|
, macaddr, ppx_sexp_conv, macaddr-cstruct, ounit2
|
2020-06-25 21:22:21 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "macaddr-sexp";
|
|
|
|
|
2022-03-29 04:30:59 +00:00
|
|
|
inherit (macaddr) version src;
|
2020-11-19 06:36:30 +00:00
|
|
|
|
2023-03-23 05:04:25 +00:00
|
|
|
duneVersion = "3";
|
|
|
|
|
2020-06-25 21:22:21 +00:00
|
|
|
propagatedBuildInputs = [ ppx_sexp_conv ];
|
|
|
|
|
2023-03-23 05:04:25 +00:00
|
|
|
checkInputs = [ macaddr-cstruct ounit2 ];
|
2020-06-25 21:22:21 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = macaddr.meta // {
|
|
|
|
description = "A library for manipulation of MAC address representations using sexp";
|
|
|
|
};
|
|
|
|
}
|