-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bring back dogfood for display
- Loading branch information
Showing
2 changed files
with
43 additions
and
39 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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
std: inputs: let | ||
inherit (inputs) incl; | ||
inherit (inputs.paisano) pick harvest; | ||
in | ||
std.growOn { | ||
inherit inputs; | ||
cellsFrom = incl ./src ["std" "lib"]; | ||
cellBlocks = with std.blockTypes; [ | ||
## For downstream use | ||
|
||
# std | ||
(runnables "cli" {ci.build = true;}) | ||
(functions "devshellProfiles") | ||
(functions "errors") | ||
(data "templates") | ||
|
||
# lib | ||
(functions "dev") | ||
(functions "ops") | ||
(nixago "cfg") | ||
]; | ||
} | ||
(std.grow { | ||
inherit inputs; | ||
cellsFrom = incl ./src ["local" "tests"]; | ||
cellBlocks = with std.blockTypes; [ | ||
## For local use in the Standard repository | ||
# local | ||
(devshells "shells" {ci.build = true;}) | ||
(nixago "configs") | ||
(containers "containers") | ||
(namaka "checks") | ||
]; | ||
}) | ||
{ | ||
# auxiliary outputs | ||
devShells = harvest inputs.self ["local" "shells"]; | ||
packages = harvest inputs.self [["std" "cli"] ["std" "packages"]]; | ||
templates = pick inputs.self ["std" "templates"]; | ||
checks = pick inputs.self ["tests" "checks"]; | ||
} |
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