summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMatthew Maurer <matthew.r.maurer@gmail.com>2017-03-24 19:34:02 -0400
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-03-30 01:02:51 +0000
commit401c284af0571ae7a1937bf6ab9eb6b27bc1e61e (patch)
tree65f7926ee65e3391803d9f7141a3689ce5f19501 /pkgs/development
parent24c616c4b67b0be370938868ca2f995ee651ace7 (diff)
downloadnixpkgs-401c284af0571ae7a1937bf6ab9eb6b27bc1e61e.tar
nixpkgs-401c284af0571ae7a1937bf6ab9eb6b27bc1e61e.tar.gz
nixpkgs-401c284af0571ae7a1937bf6ab9eb6b27bc1e61e.tar.bz2
nixpkgs-401c284af0571ae7a1937bf6ab9eb6b27bc1e61e.tar.lz
nixpkgs-401c284af0571ae7a1937bf6ab9eb6b27bc1e61e.tar.xz
nixpkgs-401c284af0571ae7a1937bf6ab9eb6b27bc1e61e.tar.zst
nixpkgs-401c284af0571ae7a1937bf6ab9eb6b27bc1e61e.zip
ocaml-async_ssl: 112.24.03 -> 113.33.07
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/async_ssl/default.nix25
-rw-r--r--pkgs/development/ocaml-modules/janestreet/async_ssl.nix16
2 files changed, 16 insertions, 25 deletions
diff --git a/pkgs/development/ocaml-modules/async_ssl/default.nix b/pkgs/development/ocaml-modules/async_ssl/default.nix
deleted file mode 100644
index 2bace35aa8b..00000000000
--- a/pkgs/development/ocaml-modules/async_ssl/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{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 ];
-  };
-}
diff --git a/pkgs/development/ocaml-modules/janestreet/async_ssl.nix b/pkgs/development/ocaml-modules/janestreet/async_ssl.nix
new file mode 100644
index 00000000000..5cd4c6064e0
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/async_ssl.nix
@@ -0,0 +1,16 @@
+{stdenv, buildOcamlJane, fetchurl, async, comparelib, core, ctypes, openssl,
+ fieldslib, herelib, pipebang, sexplib, ocaml_oasis}:
+
+buildOcamlJane rec {
+  name = "async_ssl";
+  version = "113.33.07";
+  hash = "0bhzpnmlx6dy4fli3i7ipjwqbsdi7fq171jrila5dr3ciy3841xs";
+  propagatedBuildInputs = [ ctypes async comparelib core fieldslib
+                            herelib pipebang sexplib openssl ocaml_oasis ];
+  meta = with stdenv.lib; {
+    homepage = https://github.com/janestreet/async_ssl;
+    description = "Async wrappers for ssl";
+    license = licenses.asl20;
+    maintainers = [ maintainers.ericbmerritt ];
+  };
+}