bun: use correct fake hash function in bun update script (#257133)

This commit is contained in:
Corné Dorrestijn 2023-09-26 08:45:30 +02:00 committed by GitHub
parent 8d39ea343f
commit f758d66c9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -75,7 +75,7 @@ stdenvNoCC.mkDerivation rec {
exit 0
fi
for platform in ${lib.escapeShellArgs meta.platforms}; do
update-source-version "bun" "0" "${lib.fakeSha256}" --source-key="sources.$platform"
update-source-version "bun" "0" "${lib.fakeHash}" --source-key="sources.$platform"
update-source-version "bun" "$NEW_VERSION" --source-key="sources.$platform"
done
'';