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.
This commit is contained in:
Harald Hoyer 2026-05-06 09:07:53 +02:00
parent 55b74f0caf
commit 623a71f95f

View file

@ -17,7 +17,7 @@ final: prev: {
owner = "am17an"; owner = "am17an";
repo = "llama.cpp"; repo = "llama.cpp";
rev = "267f8afe857b7bd1a49e4fde9138ab0f7be36625"; rev = "267f8afe857b7bd1a49e4fde9138ab0f7be36625";
hash = "sha256-aMN5ur1aRi2OQ+Jc5aYEi5HUVvzmFsXT8y9O/01rUWU="; hash = "sha256-VYvRjnNZpPE60wjpBVO1FbURMRRMg71sM5kBxiEkElk=";
postFetch = '' postFetch = ''
echo -n "267f8af" > $out/COMMIT echo -n "267f8af" > $out/COMMIT
''; '';