Skip to content

Commit

Permalink
bun: 1.0.5 -> 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
cornedor committed Oct 12, 2023
1 parent 930c2a5 commit fce2579
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/development/web/bun/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}:

stdenvNoCC.mkDerivation rec {
version = "1.0.5";
version = "1.0.6";
pname = "bun";

src = passthru.sources.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}");
Expand Down Expand Up @@ -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-0WgKOmn0hAoSpPWvUih+PJe37wfTHWMBYN5HNfquaeQ=";
hash = "sha256-pkCAtO8JUcKJJ/CKbyl84fAT4h1Rf0ASibrq8uf9bsg=";
};
"aarch64-linux" = fetchurl {
url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip";
hash = "sha256-Cp5TM92/sPuE3wFjNXgtmF5TxjctZk1P7hJg2rKSUgE=";
hash = "sha256-eHuUgje3lmLuCQC/Tu0+B62t6vu5S8AvPWyBXfwcgdc=";
};
"x86_64-darwin" = fetchurl {
url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64.zip";
hash = "sha256-8BHtlO/ZDjYhWGMrH+HKnirMCi4LnXdD9kGKF94Z4sU=";
hash = "sha256-NBSRgpWMjAFaTzgujpCPuj8Nk0nogIswqtAcZEHUsv4=";
};
"x86_64-linux" = fetchurl {
url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip";
hash = "sha256-h3bl5tlOz7GhhAuT1irfypjnNBDuRpZNj7fGL6P7vNU=";
hash = "sha256-OQ+jSHtdsTZspgwoy0wrntgNX85lndH2dC3ETGiJKQg=";
};
};
updateScript = writeShellScript "update-bun" ''
Expand Down

0 comments on commit fce2579

Please sign in to comment.