1d0e6ba2df
PPX/P4 split
26 lines
852 B
Nix
26 lines
852 B
Nix
{stdenv, buildOcaml, fetchurl, async_p4, comparelib, core_p4, ctypes, openssl,
|
|
fieldslib_p4, herelib, pa_bench, pa_ounit, pipebang, pa_test, sexplib_p4}:
|
|
|
|
buildOcaml rec {
|
|
name = "async_ssl";
|
|
version = "112.24.03";
|
|
|
|
minimumSupportedOcamlVersion = "4.02";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/janestreet/async_ssl/archive/${version}.tar.gz";
|
|
sha256 = "1b0bea92142eef11da6bf649bbe229bd4b8d9cc807303d8142406908c0d28c68";
|
|
};
|
|
|
|
buildInputs = [ pa_bench pa_test ];
|
|
propagatedBuildInputs = [ ctypes async_p4 comparelib core_p4 fieldslib_p4 pa_ounit
|
|
herelib pipebang sexplib_p4 openssl ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/janestreet/async_ssl;
|
|
description = "Async wrappers for ssl";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.ericbmerritt ];
|
|
};
|
|
}
|