1{ lib, buildDunePackage
2, ipaddr, cstruct
3}:
4
5buildDunePackage rec {
6 pname = "ipaddr-cstruct";
7
8 inherit (ipaddr) version src;
9
10 duneVersion = "3";
11
12 propagatedBuildInputs = [ ipaddr cstruct ];
13
14 doCheck = true;
15
16 meta = ipaddr.meta // {
17 description = "A library for manipulation of IP address representations using Cstructs";
18 };
19}