Skip to content

Commit

Permalink
fix(flake): follow the inputs of nixsgx
Browse files Browse the repository at this point in the history
preventing any cache mismatches

Signed-off-by: Harald Hoyer <[email protected]>
  • Loading branch information
haraldh committed Mar 27, 2024
1 parent 45902a0 commit 88206f0
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 215 deletions.
245 changes: 44 additions & 201 deletions flake.lock

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

20 changes: 6 additions & 14 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,23 @@
];

inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";

nixsgx-flake = {
url = "github:matter-labs/nixsgx";
inputs.nixpkgs.follows = "nixpkgs";
};
nixsgx-flake.url = "github:matter-labs/nixsgx";
nixpkgs.follows = "nixsgx-flake/nixpkgs";
snowfall-lib.follows = "nixsgx-flake/snowfall-lib";

vault-auth-tee-flake = {
url = "github:matter-labs/vault-auth-tee";
inputs.nixpkgs.follows = "nixpkgs";
};

snowfall-lib = {
url = "github:snowfallorg/lib?rev=92803a029b5314d4436a8d9311d8707b71d9f0b6";
inputs.nixpkgs.follows = "nixpkgs";
inputs.nixpkgs.follows = "nixsgx-flake/nixpkgs";
};

rust-overlay = {
url = "github:oxalica/rust-overlay?rev=3ad32bb27c700b59306224e285b66577e3532dfc";
inputs.nixpkgs.follows = "nixpkgs";
inputs.nixpkgs.follows = "nixsgx-flake/nixpkgs";
};

crane = {
url = "github:ipetkov/crane";
inputs.nixpkgs.follows = "nixpkgs";
inputs.nixpkgs.follows = "nixsgx-flake/nixpkgs";
};
};

Expand Down

0 comments on commit 88206f0

Please sign in to comment.