summary refs log tree commit diff
diff options
context:
space:
mode:
authorOTABI Tomoya <tomoya.otabi@gmail.com>2023-09-26 10:37:58 +0900
committerGitHub <noreply@github.com>2023-09-26 10:37:58 +0900
commitfeea24ea2524937bec4644d6d3e860ed55da8cfc (patch)
tree85bb0455e1cc2d10b24a118c6aeca51f0665c388
parent4bae9b18f88f685a2efdac87db60593f23eb953f (diff)
parent2ef86dc8488665215739cc0d8990166fe28cfc2d (diff)
downloadnixpkgs-feea24ea2524937bec4644d6d3e860ed55da8cfc.tar
nixpkgs-feea24ea2524937bec4644d6d3e860ed55da8cfc.tar.gz
nixpkgs-feea24ea2524937bec4644d6d3e860ed55da8cfc.tar.bz2
nixpkgs-feea24ea2524937bec4644d6d3e860ed55da8cfc.tar.lz
nixpkgs-feea24ea2524937bec4644d6d3e860ed55da8cfc.tar.xz
nixpkgs-feea24ea2524937bec4644d6d3e860ed55da8cfc.tar.zst
nixpkgs-feea24ea2524937bec4644d6d3e860ed55da8cfc.zip
Merge pull request #256950 from cornedor/bun-1.0.3
bun: 1.0.2 -> 1.0.3
-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 8b88adeed42..aeb611ef0f2 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.2";
+  version = "1.0.3";
   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-QvoEakfR5wmP10d6MDpfS8THke975bVyZc5pLVliUbQ=";
+        hash = "sha256-M0OG9V+TVqUqNuEDvpPCJR1KvILty7M59JiYjOsRjS0=";
       };
       "aarch64-linux" = fetchurl {
         url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip";
-        hash = "sha256-izVtW28QE7Tty6DfQDKmw1oqD5GOolTzCeIUmtgI1Uw=";
+        hash = "sha256-0Nto5EikWEvW6PCX6801qxDdlB1PtWJ1iym0mwh/YJI=";
       };
       "x86_64-darwin" = fetchurl {
         url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64.zip";
-        hash = "sha256-e/VXNCq2CwNsM7ruk8IGSwU/swkVhcvvQRv/yiIQtCU=";
+        hash = "sha256-3GUQk7Nv5Nx25SPk+Z+6EDNEsDbLW68IOXmLt8NkSYQ=";
       };
       "x86_64-linux" = fetchurl {
         url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip";
-        hash = "sha256-kHv8PU48Le4lG3pf304hXggAtx/I5uBeu4aHmLsbdgw=";
+        hash = "sha256-8xMBU3jloMsdekejKrnswWfzXhxwvsHFNgcUf4hn0W4=";
       };
     };
     updateScript = writeShellScript "update-bun" ''