mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
18 lines
325 B
Nix
18 lines
325 B
Nix
{ lib, buildDunePackage
|
|
, macaddr, cstruct
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "macaddr-cstruct";
|
|
|
|
inherit (macaddr) version src;
|
|
|
|
propagatedBuildInputs = [ macaddr cstruct ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = macaddr.meta // {
|
|
description = "A library for manipulation of MAC address representations using Cstructs";
|
|
};
|
|
}
|