summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2021-06-07 15:04:47 -0300
committerVincent Laporte <vbgl@users.noreply.github.com>2021-06-18 12:44:54 +0200
commitd44f56f19c7142900070212795d21340d1925deb (patch)
treebe58d4d4a8131f7d40105daa474f39f2ca2123e5 /pkgs
parentc7bcbf5665fd6d6807e58cfab8cadfb029d3275c (diff)
downloadnixpkgs-d44f56f19c7142900070212795d21340d1925deb.tar
nixpkgs-d44f56f19c7142900070212795d21340d1925deb.tar.gz
nixpkgs-d44f56f19c7142900070212795d21340d1925deb.tar.bz2
nixpkgs-d44f56f19c7142900070212795d21340d1925deb.tar.lz
nixpkgs-d44f56f19c7142900070212795d21340d1925deb.tar.xz
nixpkgs-d44f56f19c7142900070212795d21340d1925deb.tar.zst
nixpkgs-d44f56f19c7142900070212795d21340d1925deb.zip
ocamlPackages.tls: 0.13.1 -> 0.13.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ocaml-modules/tls/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/tls/default.nix b/pkgs/development/ocaml-modules/tls/default.nix
index bcaab464c74..5a5479c9fe8 100644
--- a/pkgs/development/ocaml-modules/tls/default.nix
+++ b/pkgs/development/ocaml-modules/tls/default.nix
@@ -1,15 +1,15 @@
 { lib, fetchurl, buildDunePackage
 , cstruct, cstruct-sexp, domain-name, fmt, ppx_cstruct, ppx_sexp_conv, logs, hkdf, mirage-crypto, mirage-crypto-ec, mirage-crypto-pk, mirage-crypto-rng, ocaml_lwt, ptime, rresult, sexplib, x509
-, alcotest, cstruct-unix, ounit2
+, alcotest, cstruct-unix, ounit2, randomconv
 }:
 
 buildDunePackage rec {
   pname = "tls";
-  version = "0.13.1";
+  version = "0.13.2";
 
   src = fetchurl {
     url = "https://github.com/mirleft/ocaml-tls/releases/download/v${version}/tls-v${version}.tbz";
-    sha256 = "ca95fa59a82f7d38b0b495fc0cd1ff54e7728492a292895d0067c1ba9de81b7b";
+    sha256 = "sha256-IE6Fuvem8A3lZ/M8GLNYNwCG+v7BbPQ4QdYS+fKT50c=";
   };
 
   minimumOCamlVersion = "4.08";
@@ -40,6 +40,7 @@ buildDunePackage rec {
     alcotest
     cstruct-unix
     ounit2
+    randomconv
   ];
 
   meta = with lib; {