tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.tezt: init at 4.0.0
Vincent Laporte
2 years ago
ecb5ef43
de1dec50
+36
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
tezt
default.nix
top-level
ocaml-packages.nix
+34
pkgs/development/ocaml-modules/tezt/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib
2
+
, fetchFromGitLab
3
+
, buildDunePackage
4
+
, clap
5
+
, ezjsonm
6
+
, lwt
7
+
, re
8
+
}:
9
+
10
+
buildDunePackage 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
+
}
+2
pkgs/top-level/ocaml-packages.nix
···
1763
1764
tezos-base58 = callPackage ../development/ocaml-modules/tezos-base58 { };
1765
0
0
1766
theora = callPackage ../development/ocaml-modules/theora { };
1767
1768
thread-table = callPackage ../development/ocaml-modules/thread-table { };
···
1763
1764
tezos-base58 = callPackage ../development/ocaml-modules/tezos-base58 { };
1765
1766
+
tezt = callPackage ../development/ocaml-modules/tezt { };
1767
+
1768
theora = callPackage ../development/ocaml-modules/theora { };
1769
1770
thread-table = callPackage ../development/ocaml-modules/thread-table { };