nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, fetchFromGitLab
3, buildDunePackage
4, clap
5, ezjsonm
6, lwt
7, re
8}:
9
10buildDunePackage rec {
11 pname = "tezt";
12 version = "4.0.0";
13
14 minimalOCamlVersion = "4.12";
15
16 src = fetchFromGitLab {
17 owner = "nomadic-labs";
18 repo = pname;
19 rev = version;
20 hash = "sha256-waFjE/yR+XAJOew1YsCnbvsJR8oe9gflyVj4yXAvNuM=";
21 };
22
23 propagatedBuildInputs = [
24 clap
25 ezjsonm
26 lwt
27 re
28 ];
29
30 meta = {
31 description = "Test framework for unit tests, integration tests, and regression tests";
32 license = lib.licenses.mit;
33 };
34}