29 lines
496 B
Nix
29 lines
496 B
Nix
|
{ lib
|
||
|
, fetchFromGitLab
|
||
|
, buildDunePackage
|
||
|
, qcheck-alcotest
|
||
|
, alcotest
|
||
|
, alcotest-lwt
|
||
|
, uri
|
||
|
, tezos-stdlib
|
||
|
}:
|
||
|
|
||
|
buildDunePackage rec {
|
||
|
pname = "tezos-test-helpers";
|
||
|
inherit (tezos-stdlib) version useDune2;
|
||
|
src = "${tezos-stdlib.base_src}/src/lib_test";
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
qcheck-alcotest
|
||
|
alcotest
|
||
|
alcotest-lwt
|
||
|
uri
|
||
|
];
|
||
|
|
||
|
doCheck = true;
|
||
|
|
||
|
meta = tezos-stdlib.meta // {
|
||
|
description = "Tezos: yet-another local-extension of the OCaml standard library";
|
||
|
};
|
||
|
}
|