bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
19 lines
345 B
Nix
19 lines
345 B
Nix
{ lib, 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";
|
|
};
|
|
}
|