lez-explorer-ui/flake.nix

19 lines
536 B
Nix
Raw Normal View History

2026-04-01 22:55:34 +03:00
{
description = "LEZ Explorer UI - a QML block explorer for the Logos Execution Zone";
2026-04-01 22:55:34 +03:00
inputs = {
logos-module-builder.url = "github:logos-co/logos-module-builder";
nix-bundle-lgx.url = "github:logos-co/nix-bundle-lgx";
2026-06-23 19:11:30 +03:00
2026-07-02 17:49:03 +03:00
lez_indexer_module.url = "git+https://github.com/logos-blockchain/lez-indexer-module?ref=main";
};
2026-04-01 22:55:34 +03:00
outputs =
inputs@{ logos-module-builder, ... }:
logos-module-builder.lib.mkLogosQmlModule {
src = ./.;
configFile = ./metadata.json;
flakeInputs = inputs;
2026-04-01 22:55:34 +03:00
};
}