1ffc76754d
GitOrigin-RevId: a5cc7d3197705f933d88e97c0c61849219ce76c1
20 lines
501 B
Nix
20 lines
501 B
Nix
{ lib, buildDunePackage
|
|
, macaddr, domain-name, stdlib-shims
|
|
, ounit, ppx_sexp_conv
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ipaddr";
|
|
|
|
inherit (macaddr) version src minimumOCamlVersion;
|
|
|
|
propagatedBuildInputs = [ macaddr domain-name stdlib-shims ];
|
|
|
|
checkInputs = [ ppx_sexp_conv ounit ];
|
|
doCheck = true;
|
|
|
|
meta = macaddr.meta // {
|
|
description = "A library for manipulation of IP (and MAC) address representations ";
|
|
maintainers = with lib.maintainers; [ alexfmpe ericbmerritt ];
|
|
};
|
|
}
|