nixpkgs/pkgs/development/ocaml-modules/ipaddr/default.nix

21 lines
510 B
Nix
Raw Normal View History

{ lib, buildDunePackage
, macaddr, domain-name, stdlib-shims
, ounit, ppx_sexp_conv
}:
buildDunePackage rec {
pname = "ipaddr";
2020-11-19 06:36:38 +00:00
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 ];
};
}