summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorCorné Dorrestijn <contact@corne.info>2023-10-12 12:07:03 +0200
committerCorné Dorrestijn <contact@corne.info>2023-10-12 12:07:03 +0200
commit930c2a578f9a74a94b371eed6b50ca72afa0499f (patch)
tree8b71d311100a1ec98de5c4c035c83adeb3918b92 /pkgs/development/web
parentba0e049eb2ddf9fa3c6ae6f246c7332096dbc724 (diff)
bun: 1.0.4 -> 1.0.5
Diffstat (limited to 'pkgs/development/web')
-rw-r--r--pkgs/development/web/bun/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/web/bun/default.nix b/pkgs/development/web/bun/default.nix
index 8b6c7c962c485..9e118964229cf 100644
--- a/pkgs/development/web/bun/default.nix
+++ b/pkgs/development/web/bun/default.nix
@@ -12,7 +12,7 @@
 }:
 
 stdenvNoCC.mkDerivation rec {
-  version = "1.0.4";
+  version = "1.0.5";
   pname = "bun";
 
   src = passthru.sources.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}");
@@ -51,19 +51,19 @@ stdenvNoCC.mkDerivation rec {
     sources = {
       "aarch64-darwin" = fetchurl {
         url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-aarch64.zip";
-        hash = "sha256-ko0DFCYUfuww3qrz4yUde6Mr4yPVcMJwwGdrG9Fiwhg=";
+        hash = "sha256-0WgKOmn0hAoSpPWvUih+PJe37wfTHWMBYN5HNfquaeQ=";
       };
       "aarch64-linux" = fetchurl {
         url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip";
-        hash = "sha256-0KFAvfyTJU1z/KeKVbxFx6+Ijz4YzMsCMiytom730QI=";
+        hash = "sha256-Cp5TM92/sPuE3wFjNXgtmF5TxjctZk1P7hJg2rKSUgE=";
       };
       "x86_64-darwin" = fetchurl {
         url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64.zip";
-        hash = "sha256-YEIXthisgNx+99wZF8hZ1T3MU20Yeyms3/q1UGDAwso=";
+        hash = "sha256-8BHtlO/ZDjYhWGMrH+HKnirMCi4LnXdD9kGKF94Z4sU=";
       };
       "x86_64-linux" = fetchurl {
         url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip";
-        hash = "sha256-lEEIrmIEcIdE2SqnKlVxpiq9ae2wNRepHY61jWqk584=";
+        hash = "sha256-h3bl5tlOz7GhhAuT1irfypjnNBDuRpZNj7fGL6P7vNU=";
       };
     };
     updateScript = writeShellScript "update-bun" ''