1ffc76754d
GitOrigin-RevId: a5cc7d3197705f933d88e97c0c61849219ce76c1
18 lines
413 B
Nix
18 lines
413 B
Nix
{ lib, buildDunePackage
|
|
, ipaddr, ipaddr-cstruct, ounit, ppx_sexp_conv
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ipaddr-sexp";
|
|
|
|
inherit (ipaddr) version src minimumOCamlVersion;
|
|
|
|
propagatedBuildInputs = [ ipaddr ];
|
|
|
|
checkInputs = [ ipaddr-cstruct ounit ppx_sexp_conv ];
|
|
doCheck = true;
|
|
|
|
meta = ipaddr.meta // {
|
|
description = "A library for manipulation of IP address representations usnig sexp";
|
|
};
|
|
}
|