ocamlPackages.tezt: init at 4.0.0

This commit is contained in:
Vincent Laporte 2024-04-17 05:55:34 +02:00
parent de1dec5002
commit ecb5ef436b
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, fetchFromGitLab
, buildDunePackage
, clap
, ezjsonm
, lwt
, re
}:
buildDunePackage rec {
pname = "tezt";
version = "4.0.0";
minimalOCamlVersion = "4.12";
src = fetchFromGitLab {
owner = "nomadic-labs";
repo = pname;
rev = version;
hash = "sha256-waFjE/yR+XAJOew1YsCnbvsJR8oe9gflyVj4yXAvNuM=";
};
propagatedBuildInputs = [
clap
ezjsonm
lwt
re
];
meta = {
description = "Test framework for unit tests, integration tests, and regression tests";
license = lib.licenses.mit;
};
}

View File

@ -1763,6 +1763,8 @@ let
tezos-base58 = callPackage ../development/ocaml-modules/tezos-base58 { };
tezt = callPackage ../development/ocaml-modules/tezt { };
theora = callPackage ../development/ocaml-modules/theora { };
thread-table = callPackage ../development/ocaml-modules/thread-table { };