5d26766cbf
Added homepage where missing, where the sources are pulled from: - https://github.com - https://git.sr.ht - https://gitlab.com - https://invent.kde.org - https://codeberg.org - https://gitlab.gnome.org - https://gitlab.freedesktop.org - https://git.FreeBSD.org - https://salsa.debian.org - https://git.tvdr.de - https://git.suckless.org
38 lines
664 B
Nix
38 lines
664 B
Nix
{
|
|
lib,
|
|
fetchFromGitLab,
|
|
buildDunePackage,
|
|
clap,
|
|
ezjsonm,
|
|
lwt,
|
|
re,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "tezt";
|
|
version = "4.3.0";
|
|
|
|
minimalOCamlVersion = "4.13";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "nomadic-labs";
|
|
repo = "tezt";
|
|
tag = version;
|
|
hash = "sha256-BF+hNqTm9r2S3jGjmjrw+/SHrr87WSe4YUjkc9WRgNo=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
clap
|
|
ezjsonm
|
|
lwt
|
|
re
|
|
];
|
|
|
|
meta = {
|
|
description = "Test framework for unit tests, integration tests, and regression tests";
|
|
homepage = "https://gitlab.com/nomadic-labs/tezt";
|
|
license = lib.licenses.mit;
|
|
broken = lib.versionAtLeast lwt.version "6.0.0";
|
|
};
|
|
}
|