From 623a71f95fa1fcf3df2b9c97d7c62e5cb660ad60 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 6 May 2026 09:07:53 +0200 Subject: [PATCH] fix(overlays): correct llama-cpp-rocm src hash to include postFetch COMMIT The previous hash was the bare tarball hash; postFetch writes a COMMIT file into the source, so the final fixed-output hash differs. My local machine masked the bug by reusing a cached pre-postFetch store path with the same FOD path. Verified by deleting the cached path and re-fetching. --- overlays/unstable/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlays/unstable/default.nix b/overlays/unstable/default.nix index 39884ce..9ec328e 100644 --- a/overlays/unstable/default.nix +++ b/overlays/unstable/default.nix @@ -17,7 +17,7 @@ final: prev: { owner = "am17an"; repo = "llama.cpp"; rev = "267f8afe857b7bd1a49e4fde9138ab0f7be36625"; - hash = "sha256-aMN5ur1aRi2OQ+Jc5aYEi5HUVvzmFsXT8y9O/01rUWU="; + hash = "sha256-VYvRjnNZpPE60wjpBVO1FbURMRRMg71sM5kBxiEkElk="; postFetch = '' echo -n "267f8af" > $out/COMMIT '';