Iuri Matias 310b6df8ec add tests using the module test framework
add tests using the module test framework

test fix

update flake
2026-06-10 10:58:22 -04:00

27 lines
764 B
Nix

{
description = "Logos Execution Zone Wallet Module - Qt6 Plugin";
inputs = {
logos-module-builder.url = "github:logos-co/logos-module-builder";
nix-bundle-lgx.url = "github:logos-co/nix-bundle-lgx";
logos-execution-zone.url = "github:logos-blockchain/lssa?rev=cf3639d8252040d13b3d4e933feb19b42c76e14a"; # v0.1.2
};
outputs = inputs@{ logos-module-builder, ... }:
logos-module-builder.lib.mkLogosModule {
src = ./.;
configFile = ./metadata.json;
flakeInputs = inputs;
externalLibInputs = {
wallet_ffi = {
input = inputs.logos-execution-zone;
packages.default = "wallet";
};
};
tests = {
dir = ./tests;
mockCLibs = [ "wallet_ffi" ];
};
};
}