2020-06-25 21:22:21 +00:00
|
|
|
{ lib, buildDunePackage
|
2023-03-23 05:04:25 +00:00
|
|
|
, ipaddr, ipaddr-cstruct, ounit2, ppx_sexp_conv
|
2020-06-25 21:22:21 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "ipaddr-sexp";
|
|
|
|
|
2022-03-29 04:30:59 +00:00
|
|
|
inherit (ipaddr) version src;
|
2020-06-25 21:22:21 +00:00
|
|
|
|
2023-03-23 05:04:25 +00:00
|
|
|
duneVersion = "3";
|
|
|
|
|
2020-06-25 21:22:21 +00:00
|
|
|
propagatedBuildInputs = [ ipaddr ];
|
|
|
|
|
2023-03-23 05:04:25 +00:00
|
|
|
checkInputs = [ ipaddr-cstruct ounit2 ppx_sexp_conv ];
|
2020-06-25 21:22:21 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = ipaddr.meta // {
|
|
|
|
description = "A library for manipulation of IP address representations usnig sexp";
|
|
|
|
};
|
|
|
|
}
|