From 567e02e20450b3863545a57199c2bea42fe42829 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 5 Dec 2020 17:27:48 +0100 Subject: [PATCH] =?UTF-8?q?ocamlPackages.alcotest:=201.0.1=20=E2=86=92=201?= =?UTF-8?q?.2.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../development/ocaml-modules/alcotest/default.nix | 14 +++++++++----- pkgs/development/ocaml-modules/alcotest/lwt.nix | 2 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/development/ocaml-modules/alcotest/default.nix b/pkgs/development/ocaml-modules/alcotest/default.nix index 3ebf0f3ed6bd..94626f3c1798 100644 --- a/pkgs/development/ocaml-modules/alcotest/default.nix +++ b/pkgs/development/ocaml-modules/alcotest/default.nix @@ -1,17 +1,21 @@ { lib, buildDunePackage, fetchurl -, astring, cmdliner, fmt, uuidm, re, stdlib-shims +, astring, cmdliner, fmt, uuidm, re, stdlib-shims, uutf }: buildDunePackage rec { pname = "alcotest"; - version = "1.0.1"; + version = "1.2.3"; + + useDune2 = true; src = fetchurl { - url = "https://github.com/mirage/alcotest/releases/download/${version}/alcotest-${version}.tbz"; - sha256 = "1xlklxb83gamqbg8j5dzm5jk4mvcwkspxajh93p6vpw9ia1li1qc"; + url = "https://github.com/mirage/alcotest/releases/download/${version}/alcotest-mirage-${version}.tbz"; + sha256 = "1bmjcivbmd4vib15v4chycgd1gl8js9dk94vzxkdg06zxqd4hp08"; }; - propagatedBuildInputs = [ astring cmdliner fmt uuidm re stdlib-shims ]; + propagatedBuildInputs = [ astring cmdliner fmt uuidm re stdlib-shims uutf ]; + + doCheck = true; meta = with lib; { homepage = "https://github.com/mirage/alcotest"; diff --git a/pkgs/development/ocaml-modules/alcotest/lwt.nix b/pkgs/development/ocaml-modules/alcotest/lwt.nix index f005421a6fc8..82efbe91a069 100644 --- a/pkgs/development/ocaml-modules/alcotest/lwt.nix +++ b/pkgs/development/ocaml-modules/alcotest/lwt.nix @@ -3,7 +3,7 @@ buildDunePackage { pname = "alcotest-lwt"; - inherit (alcotest) version src; + inherit (alcotest) version src useDune2; propagatedBuildInputs = [ alcotest logs ocaml_lwt ];