From 1ec0b308962d4e8b87a9ad83e767577a7722ee59 Mon Sep 17 00:00:00 2001 From: reidlab Date: Tue, 14 Jan 2025 16:25:34 -0800 Subject: [PATCH] toolchain.toml >> rust-toolchain.toml --- flake.nix | 6 +++--- toolchain.toml => rust-toolchain.toml | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename toolchain.toml => rust-toolchain.toml (100%) diff --git a/flake.nix b/flake.nix index c69eaea..b222a21 100644 --- a/flake.nix +++ b/flake.nix @@ -15,7 +15,7 @@ overlays = [rust-overlay.overlays.default]; }; package = (builtins.fromTOML (builtins.readFile ./Cargo.toml)).package; - toolchain = pkgs.rust-bin.fromRustupToolchainFile ./toolchain.toml; + toolchain = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml; rustPlatform = pkgs.makeRustPlatform { cargo = toolchain; rustc = toolchain; @@ -30,8 +30,8 @@ # uncomment this and let the build fail, then get the current hash # very scuffed but endorsed! - #cargoSha256 = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; - cargoSha256 = "sha256-KOMEvg3iGjmMEFxsrIqD4SaDw63ojiNNNqCfzRlbYLw="; + #cargoHash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; + cargoHash = "sha256-KOMEvg3iGjmMEFxsrIqD4SaDw63ojiNNNqCfzRlbYLw="; nativeBuildInputs = with pkgs; [ pkg-config ]; diff --git a/toolchain.toml b/rust-toolchain.toml similarity index 100% rename from toolchain.toml rename to rust-toolchain.toml