about summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorKane Wang <50613gary@gmail.com>2024-01-18 07:02:02 +0000
committerYaya <github@uwu.is>2024-01-19 17:48:49 +0100
commite99651a836b162b48fbf4195e0c8d3028b6b32a8 (patch)
treec07f33ac63da2b897816dca2001348b77245d5f4 /pkgs/development/web
parentaa2fc895db176e42138996d6cb3a5f80b3ea5729 (diff)
downloadnixlib-e99651a836b162b48fbf4195e0c8d3028b6b32a8.tar
nixlib-e99651a836b162b48fbf4195e0c8d3028b6b32a8.tar.gz
nixlib-e99651a836b162b48fbf4195e0c8d3028b6b32a8.tar.bz2
nixlib-e99651a836b162b48fbf4195e0c8d3028b6b32a8.tar.lz
nixlib-e99651a836b162b48fbf4195e0c8d3028b6b32a8.tar.xz
nixlib-e99651a836b162b48fbf4195e0c8d3028b6b32a8.tar.zst
nixlib-e99651a836b162b48fbf4195e0c8d3028b6b32a8.zip
bun: 1.0.22 -> 1.0.23
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 2f492ed603f5..bec04649d3ce 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.22";
+  version = "1.0.23";
   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-DbpDJe7QfWa+QK31mqmWUxJ9O/CUhDHk2RILBo5d1+A=";
+        hash = "sha256-qWg2WdWQHAYXLkIQd2RPQ2j1Bo3qKHhlxcFaqDIxcks=";
       };
       "aarch64-linux" = fetchurl {
         url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip";
-        hash = "sha256-dROAnP6cTX4uteDdIXTFg/h+DX6IanRw2EuQgOev5xc=";
+        hash = "sha256-nojMZknNXG+pMsSWx7SkkcAweeXtF3W+XC8+QvQHtD4=";
       };
       "x86_64-darwin" = fetchurl {
         url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64.zip";
-        hash = "sha256-ZkFXtiUFsR2XX97vYHXvGVm0FulInL0d+44TvUZA+0U=";
+        hash = "sha256-MQjeSKVYtKwVMq9p2NLZZPaxdEJJYzDLQ6xusR8qZGM=";
       };
       "x86_64-linux" = fetchurl {
         url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip";
-        hash = "sha256-+TCpIiI1s84TxOq+5YPfETKqgPUxgkdZDeM5KNyoZfY=";
+        hash = "sha256-IPQ4W8B4prlLljf7OviGpYtqNxSxMB1kHCMOrnbxldw=";
       };
     };
     updateScript = writeShellScript "update-bun" ''