Skip to content

Commit

Permalink
Updated hc-infra
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Sep 26, 2024
1 parent 6000dc6 commit 719e10d
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 60 deletions.
14 changes: 7 additions & 7 deletions crates/coordinator/zome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@

{
perSystem = { inputs', config, pkgs, system, lib, options, self', ... }: {
packages.profiles = inputs.hc-infra.outputs.lib.rustZome {
inherit system;
packages.profiles = inputs.hc-infra.outputs.builders.${system}.rustZome {
workspacePath = inputs.self.outPath;
crateCargoToml = ./Cargo.toml;
};

checks.profiles = inputs.hc-infra.outputs.lib.sweettest {
inherit system;
checks.profiles = inputs.hc-infra.outputs.builders.${system}.sweettest {
workspacePath = inputs.self.outPath;
dna = inputs.hc-infra.outputs.lib.dna {
dna = inputs.hc-infra.outputs.builders.${system}.dna {
dnaManifest = builtins.toFile "dna.yaml" ''
---
manifest_version: "1"
Expand All @@ -30,8 +28,10 @@
- name: profiles_integrity
dylib: ~
'';
zomes = inputs.hc-infra.outputs.lib.filterZomes self'.packages;
inherit system;
zomes = {
profiles = self'.packages.profiles;
profiles_integrity = self'.packages.profiles_integrity;
};
};
crateCargoToml = ./Cargo.toml;
};
Expand Down
10 changes: 5 additions & 5 deletions crates/integrity/zome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

{
perSystem = { inputs', config, pkgs, system, lib, options, ... }: {
packages.profiles_integrity = inputs.hc-infra.outputs.lib.rustZome {
inherit system;
workspacePath = inputs.self.outPath;
crateCargoToml = ./Cargo.toml;
};
packages.profiles_integrity =
inputs.hc-infra.outputs.builders.${system}.rustZome {
workspacePath = inputs.self.outPath;
crateCargoToml = ./Cargo.toml;
};
};
}

100 changes: 52 additions & 48 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 719e10d

Please sign in to comment.