1{
2 buildDunePackage,
3 ipaddr,
4 ipaddr-cstruct,
5 ounit2,
6 ppx_sexp_conv,
7}:
8
9buildDunePackage {
10 pname = "ipaddr-sexp";
11
12 inherit (ipaddr) version src;
13
14 duneVersion = "3";
15
16 propagatedBuildInputs = [ ipaddr ];
17
18 checkInputs = [
19 ipaddr-cstruct
20 ounit2
21 ppx_sexp_conv
22 ];
23 doCheck = true;
24
25 meta = ipaddr.meta // {
26 description = "Library for manipulation of IP address representations usnig sexp";
27 };
28}