Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 16.09 25 lines 828 B view raw
1{stdenv, buildOcaml, fetchurl, async, comparelib, core, ctypes, openssl, 2 fieldslib, herelib, pa_bench, pa_ounit, pipebang, pa_test, sexplib}: 3 4buildOcaml rec { 5 name = "async_ssl"; 6 version = "112.24.03"; 7 8 minimumSupportedOcamlVersion = "4.02"; 9 10 src = fetchurl { 11 url = "https://github.com/janestreet/async_ssl/archive/${version}.tar.gz"; 12 sha256 = "1b0bea92142eef11da6bf649bbe229bd4b8d9cc807303d8142406908c0d28c68"; 13 }; 14 15 buildInputs = [ pa_bench pa_test ]; 16 propagatedBuildInputs = [ ctypes async comparelib core fieldslib pa_ounit 17 herelib pipebang sexplib openssl ]; 18 19 meta = with stdenv.lib; { 20 homepage = https://github.com/janestreet/async_ssl; 21 description = "Async wrappers for ssl"; 22 license = licenses.asl20; 23 maintainers = [ maintainers.ericbmerritt ]; 24 }; 25}