summaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/ipaddr/cstruct.nix
blob: 0cf9cb91605de4ca458d732cdae673934af4bc67 (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,
  ipaddr,
  cstruct,
}:

buildDunePackage {
  pname = "ipaddr-cstruct";

  inherit (ipaddr) version src;

  duneVersion = "3";

  propagatedBuildInputs = [
    ipaddr
    cstruct
  ];

  doCheck = true;

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