Merge pull request #333231 from vbgl/ocaml-alcotest-1.8.0

ocamlPackages.alcotest: 1.7.0 → 1.8.0
This commit is contained in:
Ulrik Strid 2024-08-08 17:46:45 +02:00 committed by GitHub
commit 223e281b6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 ];