Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / ocaml-modules / ipaddr / sexp.nix
blob1ede3c064ada251e182a4a891faac71691d50e3b
1 { lib, buildDunePackage
2 , ipaddr, ipaddr-cstruct, ounit, ppx_sexp_conv
3 }:
5 buildDunePackage rec {
6   pname = "ipaddr-sexp";
8   inherit (ipaddr) version src useDune2 minimumOCamlVersion;
10   propagatedBuildInputs = [ ipaddr ];
12   checkInputs = [ ipaddr-cstruct ounit ppx_sexp_conv ];
13   doCheck = true;
15   meta = ipaddr.meta // {
16     description = "A library for manipulation of IP address representations usnig sexp";
17   };