nixpkgs/pkgs/development/ocaml-modules/macaddr/cstruct.nix
2022-03-29 08:02:14 +02:00

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";
};
}