18 lines
345 B
Nix
18 lines
345 B
Nix
|
{ lib, buildDunePackage
|
||
|
, macaddr, cstruct
|
||
|
}:
|
||
|
|
||
|
buildDunePackage {
|
||
|
pname = "macaddr-cstruct";
|
||
|
|
||
|
inherit (macaddr) version src minimumOCamlVersion;
|
||
|
|
||
|
propagatedBuildInputs = [ macaddr cstruct ];
|
||
|
|
||
|
doCheck = true;
|
||
|
|
||
|
meta = macaddr.meta // {
|
||
|
description = "A library for manipulation of MAC address representations using Cstructs";
|
||
|
};
|
||
|
}
|