Skip to content
This repository has been archived by the owner on Jun 24, 2024. It is now read-only.

Commit

Permalink
Nix build is working
Browse files Browse the repository at this point in the history
  • Loading branch information
soareschen committed Apr 11, 2024
1 parent 344a588 commit fd4ad00
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ target-path

demo_data/

/ci/**/*.lock
/ci/**/*.lock

result
6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
};
};

rust-bin = nixpkgs.rust-bin.stable.latest.complete;
rust-bin = nixpkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;

sov-celestia-cw = import ./nix/sov-celestia-cw.nix {
inherit nixpkgs rust-bin;
inherit (inputs) sovereign-sdk-src;
inherit nixpkgs rust-bin;
inherit (inputs) sovereign-sdk-src;
};
in {
packages = {
Expand Down
5 changes: 4 additions & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
[toolchain]
channel = "1.75"
channel = "1.77"
components = [ "rustfmt", "rust-src", "clippy" ]
profile = "minimal"
targets = [
"wasm32-unknown-unknown",
]

0 comments on commit fd4ad00

Please sign in to comment.