mirror of
https://github.com/logos-blockchain/logos-blockchain-ui.git
synced 2026-07-08 16:59:45 +00:00
* feat: user new module builder and new qml app -> qml + c++ backend * adapt to logos-blockchain-module using module-builder * fix: update to new apis
17 lines
494 B
Nix
17 lines
494 B
Nix
{
|
|
description = "Blockchain UI plugin for the Logos application";
|
|
|
|
inputs = {
|
|
logos-module-builder.url = "github:logos-co/logos-module-builder";
|
|
nix-bundle-lgx.url = "github:logos-co/nix-bundle-lgx";
|
|
liblogos_blockchain_module.url = "github:logos-blockchain/logos-blockchain-module";
|
|
};
|
|
|
|
outputs = inputs@{ logos-module-builder, ... }:
|
|
logos-module-builder.lib.mkLogosQmlModule {
|
|
src = ./.;
|
|
configFile = ./metadata.json;
|
|
flakeInputs = inputs;
|
|
};
|
|
}
|