Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / ipaddr / sexp.nix
bloba74236c5aa0cb217373142927a8fb2c9f6ed36ec
1 { lib, 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 = "A library for manipulation of IP address representations usnig sexp";
19   };