biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / macaddr / cstruct.nix
blob863491e0b7fb8de498c726de7382cb886656caa0
1 { lib, buildDunePackage
2 , macaddr, cstruct
3 }:
5 buildDunePackage {
6   pname = "macaddr-cstruct";
8   inherit (macaddr) version src;
10   duneVersion = "3";
12   propagatedBuildInputs = [ macaddr cstruct ];
14   doCheck = true;
16   meta = macaddr.meta // {
17     description = "A library for manipulation of MAC address representations using Cstructs";
18   };