26 lines
502 B
Nix
26 lines
502 B
Nix
|
{ lib
|
||
|
, buildDunePackage
|
||
|
, alcotest
|
||
|
, tezos-event-logging
|
||
|
, tezos-stdlib
|
||
|
, tezos-test-helpers
|
||
|
}:
|
||
|
|
||
|
buildDunePackage {
|
||
|
pname = "tezos-event-logging-test-helpers";
|
||
|
inherit (tezos-stdlib) version useDune2;
|
||
|
src = "${tezos-stdlib.base_src}/src/lib_event_logging/test_helpers/";
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
alcotest
|
||
|
tezos-event-logging
|
||
|
tezos-test-helpers
|
||
|
];
|
||
|
|
||
|
doCheck = true;
|
||
|
|
||
|
meta = tezos-stdlib.meta // {
|
||
|
description = "Tezos: test helpers for the event logging library";
|
||
|
};
|
||
|
}
|