From 76796543e4f9c9318a22126042b804cd86a34d93 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 29 Oct 2022 12:39:24 +0200 Subject: [PATCH] =?UTF-8?q?ocamlPackages.eqaf:=200.8=20=E2=86=92=200.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/eqaf/default.nix | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/pkgs/development/ocaml-modules/eqaf/default.nix b/pkgs/development/ocaml-modules/eqaf/default.nix index ba2274e9c326..d3e29be3c688 100644 --- a/pkgs/development/ocaml-modules/eqaf/default.nix +++ b/pkgs/development/ocaml-modules/eqaf/default.nix @@ -1,17 +1,16 @@ -{ lib, fetchurl, buildDunePackage, cstruct, bigarray-compat }: +{ lib, fetchurl, buildDunePackage, cstruct }: buildDunePackage rec { - minimumOCamlVersion = "4.03"; + minimalOCamlVersion = "4.07"; pname = "eqaf"; - version = "0.8"; - useDune2 = true; + version = "0.9"; src = fetchurl { - url = "https://github.com/mirage/eqaf/releases/download/v${version}/eqaf-v${version}.tbz"; - sha256 = "sha256-EUWhYBB0N9eUPgLkht9r0jPTk37BpZfX+jntuUcc+HU="; + url = "https://github.com/mirage/eqaf/releases/download/v${version}/eqaf-${version}.tbz"; + sha256 = "sha256-7A4oqUasaBf5XVhU8FqZYa46hAi7YQ55z60BubJV3+A="; }; - propagatedBuildInputs = [ cstruct bigarray-compat ]; + propagatedBuildInputs = [ cstruct ]; meta = { description = "Constant time equal function to avoid timing attacks in OCaml";