ocaml-async_ssl: 112.24.03 -> 113.33.07

authored by Matthew Maurer and committed by Vincent Laporte 401c284a 24c616c4

+18 -27
-25
pkgs/development/ocaml-modules/async_ssl/default.nix
··· 1 - {stdenv, buildOcaml, fetchurl, async_p4, comparelib, core_p4, ctypes, openssl, 2 - fieldslib_p4, herelib, pa_bench, pa_ounit, pipebang, pa_test, sexplib_p4}: 3 - 4 - buildOcaml 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_p4 comparelib core_p4 fieldslib_p4 pa_ounit 17 - herelib pipebang sexplib_p4 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 - }
+16
pkgs/development/ocaml-modules/janestreet/async_ssl.nix
··· 1 + {stdenv, buildOcamlJane, fetchurl, async, comparelib, core, ctypes, openssl, 2 + fieldslib, herelib, pipebang, sexplib, ocaml_oasis}: 3 + 4 + buildOcamlJane rec { 5 + name = "async_ssl"; 6 + version = "113.33.07"; 7 + hash = "0bhzpnmlx6dy4fli3i7ipjwqbsdi7fq171jrila5dr3ciy3841xs"; 8 + propagatedBuildInputs = [ ctypes async comparelib core fieldslib 9 + herelib pipebang sexplib openssl ocaml_oasis ]; 10 + meta = with stdenv.lib; { 11 + homepage = https://github.com/janestreet/async_ssl; 12 + description = "Async wrappers for ssl"; 13 + license = licenses.asl20; 14 + maintainers = [ maintainers.ericbmerritt ]; 15 + }; 16 + }
+2 -2
pkgs/top-level/ocaml-packages.nix
··· 36 36 37 37 async_shell = callPackage ../development/ocaml-modules/async_shell { }; 38 38 39 - async_ssl = callPackage ../development/ocaml-modules/async_ssl { }; 40 - 41 39 async_unix_p4 = callPackage ../development/ocaml-modules/async_unix { }; 42 40 43 41 async_p4 = ··· 766 764 if lib.versionOlder "4.02" ocaml.version 767 765 then callPackage ../development/ocaml-modules/janestreet/async.nix {} 768 766 else async_p4; 767 + 768 + async_ssl = callPackage ../development/ocaml-modules/janestreet/async_ssl.nix { }; 769 769 770 770 # Apps / from all-packages 771 771