nixpkgs/pkgs/development/ocaml-modules/macaddr/cstruct.nix
2023-03-23 06:04:25 +01:00

20 lines
347 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 = "A library for manipulation of MAC address representations using Cstructs";
};
}