summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/ipaddr/default.nix
blob: 3090066c2f4e2785290dcd1a885e0d16590ed9e5 (plain) (tree)
1
2
3
4
5
6
7
8
9
                       

                                    
  
 

                      
 
                                                             
 
                                                               
 
                                        
                 
 
                          
                                                                                        
                                                                  

    
{ 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 ];
  };
}