Revert "nix: pin Rust version"

This reverts commit 0385f033b2.
This commit is contained in:
Harsh Shandilya 2022-02-19 00:19:48 +05:30
parent 360890f57f
commit b67f8e4b56
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80

View file

@ -2,9 +2,10 @@ with import <nixpkgs> { overlays = [ (import <rust-overlay>) ]; };
mkShell { mkShell {
RUSTFLAGS = ""; RUSTFLAGS = "";
buildInputs = [ buildInputs = [
(rust-bin.nightly."2022-02-14".default.override { (rust-bin.selectLatestNightlyWith (toolchain:
extensions = [ "rust-src" "rustfmt-preview" ]; toolchain.default.override {
}) extensions = [ "rust-src" "rustfmt-preview" ];
}))
xorg.libxcb xorg.libxcb
]; ];
} }