Unverified Commit 0bb74f14 authored by Leon's avatar Leon Committed by GitHub
Browse files

doc: small fix for nightly in derivation snippet (#292688)

parent aa4c6bcd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -903,8 +903,8 @@ with import <nixpkgs>
};
let
  rustPlatform = makeRustPlatform {
    cargo = rust-bin.stable.latest.minimal;
    rustc = rust-bin.stable.latest.minimal;
    cargo = rust-bin.selectLatestNightlyWith (toolchain: toolchain.default);
    rustc = rust-bin.selectLatestNightlyWith (toolchain: toolchain.default);
  };
in