nixpkgs/pkgs/development/ocaml-modules/ipaddr/sexp.nix

19 lines
422 B
Nix
Raw Normal View History

{ lib, buildDunePackage
, ipaddr, ipaddr-cstruct, ounit, ppx_sexp_conv
}:
buildDunePackage rec {
pname = "ipaddr-sexp";
2020-11-19 06:36:38 +00:00
inherit (ipaddr) version src useDune2 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";
};
}