ocamlPackages.tezt: init at 4.0.0

+36
+34
pkgs/development/ocaml-modules/tezt/default.nix
···
··· 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 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 { };