1{
2 buildDunePackage,
3 macaddr,
4 cstruct,
5}:
6
7buildDunePackage {
8 pname = "macaddr-cstruct";
9
10 inherit (macaddr) version src;
11
12 duneVersion = "3";
13
14 propagatedBuildInputs = [
15 macaddr
16 cstruct
17 ];
18
19 doCheck = true;
20
21 meta = macaddr.meta // {
22 description = "Library for manipulation of MAC address representations using Cstructs";
23 };
24}