evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / ipaddr / sexp.nix
blob0a05c7fbadd668ea6f493168fd58442102d95fa6
1 { buildDunePackage
2 , ipaddr, ipaddr-cstruct, ounit2, ppx_sexp_conv
3 }:
5 buildDunePackage rec {
6   pname = "ipaddr-sexp";
8   inherit (ipaddr) version src;
10   duneVersion = "3";
12   propagatedBuildInputs = [ ipaddr ];
14   checkInputs = [ ipaddr-cstruct ounit2 ppx_sexp_conv ];
15   doCheck = true;
17   meta = ipaddr.meta // {
18     description = "Library for manipulation of IP address representations usnig sexp";
19   };