summaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/macaddr/cstruct.nix
blob: e5cc1fff5d9ed3e771d67775c7fd33b6b8799b4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  buildDunePackage,
  macaddr,
  cstruct,
}:

buildDunePackage {
  pname = "macaddr-cstruct";

  inherit (macaddr) version src;

  duneVersion = "3";

  propagatedBuildInputs = [
    macaddr
    cstruct
  ];

  doCheck = true;

  meta = macaddr.meta // {
    description = "Library for manipulation of MAC address representations using Cstructs";
  };
}