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