-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Expose everything as packages, pending to see how we can identify apps
- Loading branch information
1 parent
ebc235a
commit 1e50a46
Showing
6 changed files
with
38 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
Daniel Salazar <[email protected]> Daniel Salazar <[email protected]> | ||
Daniel Salazar <[email protected]> Daniel Salazar <[email protected]> | ||
Daniel Salazar <[email protected]> Daniel Salazar <[email protected]> | ||
David Arnold <[email protected]> David Arnold <[email protected]> | ||
Fluid Attacks <[email protected]> Fluid Attacks <[email protected]> | ||
Github Octocat <[email protected]> GitHub <[email protected]> | ||
Kevin Amado <[email protected]> Kevin Amado <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ inputs | ||
, system | ||
, ... | ||
}: | ||
let | ||
evaluatorOutputs = import ./default.nix { | ||
# TODO: How to compute this on Flakes? | ||
makesExecutionId = "123"; | ||
makesSrc = inputs.makes.outPath; | ||
projectSrc = inputs.self.sourceInfo.outPath; | ||
# TODO: Make it mutable | ||
projectSrcMutable = inputs.self.sourceInfo.outPath; | ||
inherit system; | ||
}; | ||
|
||
apps = { }; | ||
packages = evaluatorOutputs.config.outputs; | ||
in | ||
{ | ||
inherit apps; | ||
inherit packages; | ||
} |