Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / ipaddr / default.nix
blob6e1170375dcddc012f08bd2dc84fdaf2e5196f8f
1 { lib, buildDunePackage
2 , macaddr, domain-name, stdlib-shims
3 , ounit2, ppx_sexp_conv
4 }:
6 buildDunePackage rec {
7   pname = "ipaddr";
9   inherit (macaddr) version src;
11   minimalOCamlVersion = "4.08";
12   duneVersion = "3";
14   propagatedBuildInputs = [ macaddr domain-name stdlib-shims ];
16   checkInputs = [ ppx_sexp_conv ounit2 ];
17   doCheck = true;
19   meta = macaddr.meta // {
20     description = "A library for manipulation of IP (and MAC) address representations ";
21     maintainers = with lib.maintainers; [ alexfmpe ericbmerritt ];
22   };