summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorCorné Dorrestijn <contact@corne.info>2023-09-26 08:45:30 +0200
committerGitHub <noreply@github.com>2023-09-26 08:45:30 +0200
commitf758d66c9cc3011f5327f8583908a7803cc019b1 (patch)
tree5e6905a8bd55797f1280eb21a532e1b4f7cedb11 /pkgs/development/web
parent8d39ea343f38fbf818811466f4a9fb656fb70664 (diff)
downloadnixpkgs-f758d66c9cc3011f5327f8583908a7803cc019b1.tar
nixpkgs-f758d66c9cc3011f5327f8583908a7803cc019b1.tar.gz
nixpkgs-f758d66c9cc3011f5327f8583908a7803cc019b1.tar.bz2
nixpkgs-f758d66c9cc3011f5327f8583908a7803cc019b1.tar.lz
nixpkgs-f758d66c9cc3011f5327f8583908a7803cc019b1.tar.xz
nixpkgs-f758d66c9cc3011f5327f8583908a7803cc019b1.tar.zst
nixpkgs-f758d66c9cc3011f5327f8583908a7803cc019b1.zip
bun: use correct fake hash function in bun update script (#257133)
Diffstat (limited to 'pkgs/development/web')
-rw-r--r--pkgs/development/web/bun/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/web/bun/default.nix b/pkgs/development/web/bun/default.nix
index aeb611ef0f2..06d2e93cdfa 100644
--- a/pkgs/development/web/bun/default.nix
+++ b/pkgs/development/web/bun/default.nix
@@ -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
     '';