From c23aa12f82f3e4d423898ec5f75ab7ae4a10f45b Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 8 Aug 2024 15:57:49 +0200 Subject: [PATCH] =?UTF-8?q?ocamlPackages.alcotest:=201.7.0=20=E2=86=92=201?= =?UTF-8?q?.8.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/alcotest/default.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/pkgs/development/ocaml-modules/alcotest/default.nix b/pkgs/development/ocaml-modules/alcotest/default.nix index f9f07aed0fba..c921509907b9 100644 --- a/pkgs/development/ocaml-modules/alcotest/default.nix +++ b/pkgs/development/ocaml-modules/alcotest/default.nix @@ -1,20 +1,14 @@ -{ lib, buildDunePackage, fetchurl, fetchpatch +{ lib, buildDunePackage, fetchurl , astring, cmdliner, fmt, re, stdlib-shims, uutf, ocaml-syntax-shims }: buildDunePackage rec { pname = "alcotest"; - version = "1.7.0"; + version = "1.8.0"; src = fetchurl { url = "https://github.com/mirage/alcotest/releases/download/${version}/alcotest-${version}.tbz"; - hash = "sha256-gSus2zS0XoiZXgfXMGvasvckee8ZlmN/HV0fQWZ5At8="; - }; - - # Fix tests with OCaml 5.2 - patches = fetchpatch { - url = "https://github.com/mirage/alcotest/commit/aa437168b258db97680021116af176c55e1bd53b.patch"; - hash = "sha256-cytuJFg4Mft47LsAEcz2zvzyy1wNzMdeLK+cjaFANpo="; + hash = "sha256-y6G9AXB8jFW0dkuw34yccyvjIeHxwalqQG5W2NvKHQ4="; }; nativeBuildInputs = [ ocaml-syntax-shims ];