about summary refs log tree commit diff
path: root/pkgs/development/web
diff options
context:
space:
mode:
authorSoner Sayakci <s.sayakci@shopware.com>2023-12-24 16:51:18 +0100
committerSoner Sayakci <s.sayakci@shopware.com>2023-12-24 16:51:18 +0100
commitc85602181e005ebfb6d46ce874e3925dd69e1734 (patch)
tree7357e7c11f4fd2d5237981a4cdba3e4c988d0a53 /pkgs/development/web
parent09528dada160515f5b94f21284c6b7b23ee49e93 (diff)
downloadnixlib-c85602181e005ebfb6d46ce874e3925dd69e1734.tar
nixlib-c85602181e005ebfb6d46ce874e3925dd69e1734.tar.gz
nixlib-c85602181e005ebfb6d46ce874e3925dd69e1734.tar.bz2
nixlib-c85602181e005ebfb6d46ce874e3925dd69e1734.tar.lz
nixlib-c85602181e005ebfb6d46ce874e3925dd69e1734.tar.xz
nixlib-c85602181e005ebfb6d46ce874e3925dd69e1734.tar.zst
nixlib-c85602181e005ebfb6d46ce874e3925dd69e1734.zip
bun: 1.0.18 -> 1.0.20
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 125671f9be46..8cb7750d312f 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.18";
+  version = "1.0.20";
   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-z3C6V8jG/et+CizWHHx6zN56JBe4QBhEKbDQgx67dmc=";
+        hash = "sha256-rwBU4jdD4sTB3wTS3uh1Fq88IW+LB/S/srMAMPJsQ1M=";
       };
       "aarch64-linux" = fetchurl {
         url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip";
-        hash = "sha256-xnFN1Kiaerot6ieMqf5fvyq826vE4KpM57r/7wz4C7o=";
+        hash = "sha256-kzg4pT4e6evvyPhkC3wmwWsRvSpVCM45jgn+yvEvTaI=";
       };
       "x86_64-darwin" = fetchurl {
         url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64.zip";
-        hash = "sha256-cNfTiMSdeCINchtRtAA1Lv4vVmrxwhLQNUe+96UFYp4=";
+        hash = "sha256-nIE5/h+9ShoOywA7isHW+X+J6rQF2oBgnNI7rh0ZNu0=";
       };
       "x86_64-linux" = fetchurl {
         url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip";
-        hash = "sha256-qwqgaU3zYiuer4tI4JiSsZd94IO6xn+dSjJZkM70WP4=";
+        hash = "sha256-NISClwFmDflxx09gWgo2Cpx/QXxoq4iDcYuXUT1FTn8=";
       };
     };
     updateScript = writeShellScript "update-bun" ''