From aba7099e7c2186035b60b4a0ec9233e0194a1644 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 14 May 2022 09:55:12 +0200 Subject: [PATCH] =?UTF-8?q?ocamlPackages.x509:=200.15.2=20=E2=86=92=200.16?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/x509/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/development/ocaml-modules/x509/default.nix b/pkgs/development/ocaml-modules/x509/default.nix index 116772e7819..845581aa7cc 100644 --- a/pkgs/development/ocaml-modules/x509/default.nix +++ b/pkgs/development/ocaml-modules/x509/default.nix @@ -5,19 +5,17 @@ }: buildDunePackage rec { - minimumOCamlVersion = "4.07"; + minimalOCamlVersion = "4.08"; pname = "x509"; - version = "0.15.2"; + version = "0.16.0"; src = fetchurl { - url = "https://github.com/mirleft/ocaml-x509/releases/download/v${version}/x509-v${version}.tbz"; - sha256 = "4034afdd83a0cb8291b1f809403015da9139bd772813d59d6093e42ec31ba643"; + url = "https://github.com/mirleft/ocaml-x509/releases/download/v${version}/x509-${version}.tbz"; + sha256 = "sha256:159mhfwsiv08sj0zk7s3k813f0mc9vpziwpf6j9r32y3nizp59k7"; }; - useDune2 = true; - - buildInputs = [ alcotest cstruct-unix ]; + checkInputs = [ alcotest cstruct-unix ]; propagatedBuildInputs = [ asn1-combinators domain-name fmt gmap mirage-crypto mirage-crypto-pk mirage-crypto-ec pbkdf logs base64 ipaddr ]; doCheck = true;