depot/third_party/nixpkgs/pkgs/development/ocaml-modules/ipaddr/default.nix
Default email cf3f6e7a7d Project import generated by Copybara.
GitOrigin-RevId: 24eb3f87fc610f18de7076aee7c5a84ac5591e3e
2020-11-30 09:33:03 +01:00

20 lines
510 B
Nix

{ lib, buildDunePackage
, macaddr, domain-name, stdlib-shims
, ounit, ppx_sexp_conv
}:
buildDunePackage rec {
pname = "ipaddr";
inherit (macaddr) version src useDune2 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 ];
};
}