Skip to content

Commit

Permalink
Added scaffold
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Apr 10, 2024
1 parent eb12b1e commit 0a31327
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,23 @@
nodejs_20
];
};

packages.scaffold = pkgs.symlinkJoin {
name = "scaffold-remote-zome";
paths = [ inputs'.hc-infra.packages.scaffold-remote-zome ];
buildInputs = [ pkgs.makeWrapper ];
postBuild = ''
wrapProgram $out/bin/scaffold-remote-zome \
--add-flags "profiles \
--integrity-zome-name file_storage_integrity \
--coordinator-zome-name file_storage \
--remote-zome-git-url github:holochain-open-dev/file-storage \
--remote-zome-git-branch nixify \
--remote-npm-package-name @holochain-open-dev/file-storage \
--remote-npm-package-path ui"
'';
};

};
};
}

0 comments on commit 0a31327

Please sign in to comment.