mirror of
https://github.com/logos-co/logos-tutorial.git
synced 2026-08-31 04:41:08 +00:00
1. removes adding standalone-app as dependency from the ui modules they get it out of the box when using module-builder 2. just using latest version of standalone app and now we have all dependecies auto packaged and installed
16 lines
440 B
Nix
16 lines
440 B
Nix
{
|
|
description = "Calculator QML UI Plugin for Logos - frontend for calc_module";
|
|
|
|
inputs = {
|
|
logos-module-builder.url = "github:logos-co/logos-module-builder";
|
|
calc_module.url = "github:logos-co/logos-tutorial?dir=logos-calc-module";
|
|
};
|
|
|
|
outputs = inputs@{ logos-module-builder, ... }:
|
|
logos-module-builder.lib.mkLogosQmlModule {
|
|
src = ./.;
|
|
configFile = ./metadata.json;
|
|
flakeInputs = inputs;
|
|
};
|
|
}
|