Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / ocaml-modules / ipaddr / default.nix
blob3090066c2f4e2785290dcd1a885e0d16590ed9e5
1 { lib, buildDunePackage
2 , macaddr, domain-name, stdlib-shims
3 , ounit, ppx_sexp_conv
4 }:
6 buildDunePackage rec {
7   pname = "ipaddr";
9   inherit (macaddr) version src useDune2 minimumOCamlVersion;
11   propagatedBuildInputs = [ macaddr domain-name stdlib-shims ];
13   checkInputs = [ ppx_sexp_conv ounit ];
14   doCheck = true;
16   meta = macaddr.meta // {
17     description = "A library for manipulation of IP (and MAC) address representations ";
18     maintainers = with lib.maintainers; [ alexfmpe ericbmerritt ];
19   };