From efcf3fd29d606104f390c900027da488669bedf4 Mon Sep 17 00:00:00 2001 From: krovuxdev <62192487+krovuxdev@users.noreply.github.com> Date: Sun, 1 Sep 2024 15:17:58 -0500 Subject: [PATCH] fix: simplify Rust toolchain setup to avoid manual hash updates --- default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/default.nix b/default.nix index 297c8ff..3c243d7 100644 --- a/default.nix +++ b/default.nix @@ -24,10 +24,7 @@ in }: let # fenix: rustup replacement for reproducible builds - toolchain = fenix.${system}.fromToolchainFile { - file = ./rust-toolchain.toml; - sha256 = "sha256-6eN/GKzjVSjEhGO9FhWObkRFaE1Jf+uqMSdQnb8lcB4="; - }; + toolchain = fenix.${system}.stable.minimalToolchain; # crane: cargo and artifacts manager craneLib = crane.${system}.overrideToolchain toolchain; # cranix: extends crane building system with workspace bin building and Mold + Cranelift integrations