Skip to content

Commit

Permalink
+ devshell toolchain nightly to beta
Browse files Browse the repository at this point in the history
  • Loading branch information
oluceps committed Nov 10, 2024
1 parent 16d765e commit cb73187
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
...
}:
let
toolchain = pkgs.rust-bin.nightly.latest.minimal;
toolchain = pkgs.rust-bin.beta.latest.minimal;
craneLib = (crane.mkLib pkgs).overrideToolchain toolchain;
inherit (craneLib) buildPackage;
in
Expand Down Expand Up @@ -95,15 +95,15 @@

# see https://discourse.nixos.org/t/rust-src-not-found-and-other-misadventures-of-developing-rust-on-nixos/11570/12
RUST_SRC_PATH = "${
pkgs.rust-bin.nightly.latest.default.override {
pkgs.rust-bin.beta.latest.default.override {
extensions = [ "rust-src" ];
}
}/lib/rustlib/src/rust/library";
buildInputs = with pkgs; [
just
nushell
cargo-fuzz
rust-bin.nightly.latest.complete
rust-bin.beta.latest.complete
];
};

Expand Down

0 comments on commit cb73187

Please sign in to comment.