Merge pull request #240 from shivaraj-bh/freeform-app-type

apps: Add `meta` option
This commit is contained in:
Robert Hensing 2024-08-30 15:33:30 +02:00 committed by GitHub
commit af510d4a62
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 0 deletions

View file

@ -165,12 +165,14 @@ rec {
hello = {
program = "${pkg "a" "hello"}/bin/hello";
type = "app";
meta = { };
};
};
b = {
hello = {
program = "${pkg "b" "hello"}/bin/hello";
type = "app";
meta = { };
};
};
};