2019-12-29 11:40:36 -08:00
|
|
|
{ lib, buildDunePackage
|
2020-06-25 14:22:21 -07:00
|
|
|
, macaddr, domain-name, stdlib-shims
|
|
|
|
, ounit, ppx_sexp_conv
|
2019-12-29 11:40:36 -08:00
|
|
|
}:
|
2015-05-15 07:35:42 -07:00
|
|
|
|
2018-11-05 02:21:46 -08:00
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "ipaddr";
|
2015-05-15 07:35:42 -07:00
|
|
|
|
2020-11-18 22:36:38 -08:00
|
|
|
inherit (macaddr) version src useDune2 minimumOCamlVersion;
|
2019-12-29 11:40:36 -08:00
|
|
|
|
2020-06-25 14:22:21 -07:00
|
|
|
propagatedBuildInputs = [ macaddr domain-name stdlib-shims ];
|
2015-05-15 07:35:42 -07:00
|
|
|
|
2020-06-25 14:22:21 -07:00
|
|
|
checkInputs = [ ppx_sexp_conv ounit ];
|
2019-12-29 11:40:36 -08:00
|
|
|
doCheck = true;
|
2015-05-15 07:35:42 -07:00
|
|
|
|
2020-06-25 14:22:21 -07:00
|
|
|
meta = macaddr.meta // {
|
2015-05-15 07:35:42 -07:00
|
|
|
description = "A library for manipulation of IP (and MAC) address representations ";
|
2020-06-25 14:22:21 -07:00
|
|
|
maintainers = with lib.maintainers; [ alexfmpe ericbmerritt ];
|
2015-05-15 07:35:42 -07:00
|
|
|
};
|
|
|
|
}
|