mirror of
https://github.com/logos-blockchain/lez-explorer-ui.git
synced 2026-07-30 11:23:25 +00:00
19 lines
536 B
Nix
19 lines
536 B
Nix
{
|
|
description = "LEZ Explorer UI - a QML block explorer for the Logos Execution Zone";
|
|
|
|
inputs = {
|
|
logos-module-builder.url = "github:logos-co/logos-module-builder";
|
|
nix-bundle-lgx.url = "github:logos-co/nix-bundle-lgx";
|
|
|
|
lez_indexer_module.url = "git+https://github.com/logos-blockchain/lez-indexer-module?ref=main";
|
|
};
|
|
|
|
outputs =
|
|
inputs@{ logos-module-builder, ... }:
|
|
logos-module-builder.lib.mkLogosQmlModule {
|
|
src = ./.;
|
|
configFile = ./metadata.json;
|
|
flakeInputs = inputs;
|
|
};
|
|
}
|