Files

20 lines
669 B
Nix
Raw Permalink Normal View History

2026-03-19 19:42:15 +01:00
{
description = "Calculator C++ UI plugin for Logos - QML view with process-isolated backend for calc_module";
2026-03-19 19:42:15 +01:00
inputs = {
logos-module-builder.url = "github:logos-co/logos-module-builder";
2026-05-29 14:09:51 -04:00
# Points at your local calc_module checkout. This is a placeholder —
# you lock it to your actual path in the next step with
# `nix flake update --override-input` (see "Lock and build" below).
calc_module.url = "path:/path/to/your/calc_module";
2026-03-19 19:42:15 +01:00
};
2026-03-27 14:22:05 +01:00
outputs = inputs@{ logos-module-builder, calc_module, ... }:
logos-module-builder.lib.mkLogosQmlModule {
src = ./.;
configFile = ./metadata.json;
flakeInputs = inputs;
};
2026-03-19 19:42:15 +01:00
}