2024-07-27 06:49:29 +00:00
|
|
|
{ buildDunePackage
|
2023-03-24 00:07:29 +00:00
|
|
|
, macaddr, ppx_sexp_conv, macaddr-cstruct, ounit2
|
2020-07-18 16:06:22 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "macaddr-sexp";
|
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
inherit (macaddr) version src;
|
2020-11-30 08:33:03 +00:00
|
|
|
|
2023-03-24 00:07:29 +00:00
|
|
|
duneVersion = "3";
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
propagatedBuildInputs = [ ppx_sexp_conv ];
|
|
|
|
|
2023-03-24 00:07:29 +00:00
|
|
|
checkInputs = [ macaddr-cstruct ounit2 ];
|
2020-07-18 16:06:22 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = macaddr.meta // {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Library for manipulation of MAC address representations using sexp";
|
2020-07-18 16:06:22 +00:00
|
|
|
};
|
|
|
|
}
|