From 5fc76386cda92aaef5189aade56a2bc96f84c373 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 22 May 2026 08:36:18 +0200 Subject: [PATCH] =?UTF-8?q?ocamlPackages.tls:=202.0.2=20=E2=86=92=202.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/tls/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/ocaml-modules/tls/default.nix b/pkgs/development/ocaml-modules/tls/default.nix index aad75e3e3e9c..de4b3615fecf 100644 --- a/pkgs/development/ocaml-modules/tls/default.nix +++ b/pkgs/development/ocaml-modules/tls/default.nix @@ -10,23 +10,22 @@ mirage-crypto-ec, mirage-crypto-pk, mirage-crypto-rng, + ptime, x509, ipaddr, alcotest, ounit2, }: -buildDunePackage rec { +buildDunePackage (finalAttrs: { pname = "tls"; - version = "2.0.2"; + version = "2.1.0"; src = fetchurl { - url = "https://github.com/mirleft/ocaml-tls/releases/download/v${version}/tls-${version}.tbz"; - hash = "sha256-m6UP0M0gyb4bbJmA8NcTQ8wxdEbbVSF+s5k3rEqMsho="; + url = "https://github.com/mirleft/ocaml-tls/releases/download/v${finalAttrs.version}/tls-${finalAttrs.version}.tbz"; + hash = "sha256-2nmWB4n6QYtiv4nNUk6ZgVxQEEE7wYnw8zlmuNC4htI="; }; - minimalOCamlVersion = "4.08"; - propagatedBuildInputs = [ domain-name fmt @@ -36,6 +35,7 @@ buildDunePackage rec { mirage-crypto-ec mirage-crypto-pk mirage-crypto-rng + ptime x509 ipaddr ]; @@ -52,4 +52,4 @@ buildDunePackage rec { license = lib.licenses.bsd2; maintainers = with lib.maintainers; [ sternenseemann ]; }; -} +})