nixpkgs/pkgs/development/ocaml-modules/macaddr/cstruct.nix
2020-11-26 06:55:12 +01:00

20 lines
365 B
Nix

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