Skip to content

Commit

Permalink
Fixed builders
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Sep 26, 2024
1 parent 2c4ce8b commit 171b5e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions templates/app/dna/dnas/{{dna_name}}/dna.nix.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
, system
, ...
}: {
packages.{{dna_name}} = inputs.hc-infra.outputs.lib.dna {
inherit system;
packages.{{dna_name}} = inputs.hc-infra.outputs.builders.${system}.dna {
dnaManifest = ./workdir/dna.yaml;
zomes = {
# Include here the zome packages for this DNA, e.g.:
Expand Down
3 changes: 1 addition & 2 deletions templates/app/web-app/happ.nix.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
, system
, ...
}: {
packages.{{app_name}} = inputs.hc-infra.outputs.lib.happ {
inherit system;
packages.{{app_name}} = inputs.hc-infra.outputs.builders.${system}.happ {
happManifest = ./workdir/happ.yaml;
dnas = {
# Include here the DNA packages for this hApp, e.g.:
Expand Down

0 comments on commit 171b5e7

Please sign in to comment.