2026-04-01 22:55:34 +03:00
|
|
|
{
|
2026-06-18 17:07:29 +03:00
|
|
|
description = "LEZ Explorer UI - a QML block explorer for the Logos Execution Zone";
|
2026-04-01 22:55:34 +03:00
|
|
|
|
|
|
|
|
inputs = {
|
2026-06-18 14:13:42 +03:00
|
|
|
logos-module-builder.url = "github:logos-co/logos-module-builder";
|
2026-06-18 17:07:29 +03:00
|
|
|
nix-bundle-lgx.url = "github:logos-co/nix-bundle-lgx";
|
2026-04-01 22:55:34 +03:00
|
|
|
|
2026-06-18 14:19:43 +03:00
|
|
|
# NOTE: git+https (not github:) because the branch name contains a slash —
|
|
|
|
|
# the github: fetcher mis-routes slashed refs through the commits API (404).
|
2026-06-18 17:07:29 +03:00
|
|
|
# TODO: repoint to the merge target once this branch lands / goes public.
|
2026-06-19 16:31:34 +03:00
|
|
|
lez_indexer_module.url = "git+https://github.com/logos-blockchain/lez-indexer-module?ref=erhant/migr-to-logos-module-builder-update-LEZ";
|
2026-06-18 14:13:42 +03:00
|
|
|
};
|
2026-04-01 22:55:34 +03:00
|
|
|
|
2026-06-18 14:13:42 +03:00
|
|
|
outputs =
|
|
|
|
|
inputs@{ logos-module-builder, ... }:
|
2026-06-18 17:07:29 +03:00
|
|
|
logos-module-builder.lib.mkLogosQmlModule {
|
2026-06-18 14:13:42 +03:00
|
|
|
src = ./.;
|
|
|
|
|
configFile = ./metadata.json;
|
|
|
|
|
flakeInputs = inputs;
|
2026-04-01 22:55:34 +03:00
|
|
|
};
|
|
|
|
|
}
|