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' --- nix/module.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'nix') diff --git a/nix/module.nix b/nix/module.nix index 39e7d8a..cf334f2 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -11,8 +11,7 @@ let cargoLock = { lockFile = ../Cargo.lock; outputHashes = { - "nostr-0.44.1" = - "sha256-02cawkx6bxfi3bn1sb5ws8cn9wzcwsk8cdv1vx8h8lad1jdic1qg"; + "nostr-0.44.1" = "sha256-DwcWmwxNUQRR32E3hqbm7PNkGdK8LB3sGtH1Zfrkigk="; }; }; -- cgit v1.2.3