From cf20e8b5727f55657139abba5e233369491cdf75 Mon Sep 17 00:00:00 2001 From: death916 Date: Tue, 8 Jul 2025 04:50:40 -0700 Subject: [PATCH] nightly pin for halloy --- overlays/halloy-overlay.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/overlays/halloy-overlay.nix b/overlays/halloy-overlay.nix index 4a64026..6f416f6 100644 --- a/overlays/halloy-overlay.nix +++ b/overlays/halloy-overlay.nix @@ -1,9 +1,10 @@ self: super: let - rustNightly = (super.rust-bin.fromRustupToolchain { - channel = "nightly"; - date = "2024-05-01"; - sha256 = "0000000000000000000000000000000000000000000000000000"; # Replace with the correct hash after the build fails + rustNightly = (super.rust-bin.fromTarball { + src = super.fetchurl { + url = "https://static.rust-lang.org/dist/2024-05-01/rust-nightly-x86_64-unknown-linux-gnu.tar.xz"; + sha256 = "0000000000000000000000000000000000000000000000000000"; # Replace with the correct hash after the build fails + }; }).override { extensions = [ "rust-src"