f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
19 lines
340 B
Nix
19 lines
340 B
Nix
{ buildDunePackage
|
|
, macaddr, cstruct
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "macaddr-cstruct";
|
|
|
|
inherit (macaddr) version src;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [ macaddr cstruct ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = macaddr.meta // {
|
|
description = "Library for manipulation of MAC address representations using Cstructs";
|
|
};
|
|
}
|