Skip to content

Commit

Permalink
Fix .cargo-home/config warning on nightly, bump probe-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
exFalso committed Apr 16, 2024
1 parent aeb58d5 commit a7115da
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion build.nix
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,8 @@ let
export CARGO_HOME=''${CARGO_HOME:-$PWD/.cargo-home}
mkdir -p $CARGO_HOME
cp "$cargoconfig" $CARGO_HOME/config
cp "$cargoconfig" $CARGO_HOME/config.toml
ln -s ./config.toml $CARGO_HOME/config
runHook postConfigure
'';
Expand Down
6 changes: 3 additions & 3 deletions nix/sources.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@
"homepage": "https://probe.rs",
"owner": "probe-rs",
"repo": "probe-rs",
"rev": "51fa324aef9f7c413988a3d18052b1bbc278a4c5",
"sha256": "0zb9s80hsz83ngjngs9cllp7gf8xq9jz0m3lwdhf08x3cp3bj6fd",
"rev": "c651f263751b370473f61addc58ccf93eb054374",
"sha256": "1n2w2gz68wf2961mjhdgi6v3jhprygkri36gr9c4kd4gykadpzdw",
"type": "tarball",
"url": "https://github.com/probe-rs/probe-rs/archive/51fa324aef9f7c413988a3d18052b1bbc278a4c5.tar.gz",
"url": "https://github.com/probe-rs/probe-rs/archive/c651f263751b370473f61addc58ccf93eb054374.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"ripgrep-all": {
Expand Down
4 changes: 2 additions & 2 deletions test/slow/probe-rs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ let

toolchain = (fenix.toolchainOf {
channel = "nightly";
date = "2023-07-01";
sha256 = "sha256-pWd4tAHP4QWGC3CKWZzDjzYANxATC6CGRmKuP2ZZv5k=";
date = "2024-04-12";
sha256 = "sha256-nOsrWb08M6PTE3qXqaiCyKBy7Shk2YTvALYaIvNWa1s=";
}).toolchain;

naersk = pkgs.callPackage ../../../default.nix {
Expand Down

0 comments on commit a7115da

Please sign in to comment.