Files
Khushboo Mehta 55b6dd237e feat: this PR does 2 things
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
2026-03-27 14:40:43 +01:00

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;
};
}