mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
ocaml-async_ssl: add initial version (112.24.03) to the system
This commit is contained in:
parent
fbba3c1c33
commit
09c6cc19f2
2 changed files with 27 additions and 0 deletions
25
pkgs/development/ocaml-modules/async_ssl/default.nix
Normal file
25
pkgs/development/ocaml-modules/async_ssl/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{stdenv, buildOcaml, fetchurl, async, comparelib, core, ctypes, openssl,
|
||||
fieldslib, herelib, pa_bench, pa_ounit, pipebang, pa_test, sexplib}:
|
||||
|
||||
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 comparelib core fieldslib pa_ounit
|
||||
herelib pipebang sexplib openssl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/janestreet/async_ssl;
|
||||
description = "Async wrappers for ssl";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.ericbmerritt ];
|
||||
};
|
||||
}
|
|
@ -4051,6 +4051,8 @@ let
|
|||
|
||||
async_kernel = callPackage ../development/ocaml-modules/async_kernel { };
|
||||
|
||||
async_ssl = callPackage ../development/ocaml-modules/async_ssl { };
|
||||
|
||||
async_unix = callPackage ../development/ocaml-modules/async_unix { };
|
||||
|
||||
async = callPackage ../development/ocaml-modules/async { };
|
||||
|
|
Loading…
Reference in a new issue