From c9a8b2a3b78babcdfbd178e374bb68c46dbdea4b Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Sun, 11 Jan 2026 15:47:11 +0000 Subject: fix: convert nostr dependency hash to SRI format The hash for the nostr-0.44.1 dependency was in Nix base32 format (sha256-02cawkx...) but needs to be in SRI base64 format (sha256-DwcWmwxNUQRR...) for compatibility with modern Nix. This was causing nixos-rebuild to fail with: error: invalid SRI hash '02cawkx6bxfi3bn1sb5ws8cn9wzcwsk8cdv1vx8h8lad1jdic1qg' --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index 71749b9..14d1242 100644 --- a/flake.nix +++ b/flake.nix @@ -42,7 +42,7 @@ lockFile = ./Cargo.lock; outputHashes = { "nostr-0.44.1" = - "sha256-02cawkx6bxfi3bn1sb5ws8cn9wzcwsk8cdv1vx8h8lad1jdic1qg"; + "sha256-DwcWmwxNUQRR32E3hqbm7PNkGdK8LB3sGtH1Zfrkigk="; }; }; -- cgit v1.2.3