2022-09-30 11:47:45 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenvNoCC
|
|
|
|
|
, callPackage
|
|
|
|
|
, fetchurl
|
|
|
|
|
, autoPatchelfHook
|
|
|
|
|
, unzip
|
|
|
|
|
, openssl
|
|
|
|
|
, writeShellScript
|
|
|
|
|
, curl
|
|
|
|
|
, jq
|
|
|
|
|
, common-updater-scripts
|
|
|
|
|
}:
|
2022-07-14 12:49:19 +00:00
|
|
|
|
|
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
2023-07-15 17:15:38 +00:00
|
|
|
|
version = "0.6.14";
|
2022-07-14 12:49:19 +00:00
|
|
|
|
pname = "bun";
|
|
|
|
|
|
2022-09-30 11:47:45 +00:00
|
|
|
|
src = passthru.sources.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}");
|
2022-07-14 12:49:19 +00:00
|
|
|
|
|
|
|
|
|
strictDeps = true;
|
|
|
|
|
nativeBuildInputs = [ unzip ] ++ lib.optionals stdenvNoCC.isLinux [ autoPatchelfHook ];
|
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
|
|
|
|
|
dontConfigure = true;
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
runHook preInstall
|
|
|
|
|
install -Dm 755 ./bun $out/bin/bun
|
|
|
|
|
runHook postInstall
|
|
|
|
|
'';
|
2022-09-30 11:47:45 +00:00
|
|
|
|
passthru = {
|
|
|
|
|
sources = {
|
|
|
|
|
"aarch64-darwin" = fetchurl {
|
|
|
|
|
url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-aarch64.zip";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
sha256 = "adXsZjg2dmUzaKTBARfS195y3eTUgiOep5pr6y36c6g=";
|
2022-09-30 11:47:45 +00:00
|
|
|
|
};
|
|
|
|
|
"aarch64-linux" = fetchurl {
|
|
|
|
|
url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
sha256 = "IHGYARyeRHN3vORW/fBX7+j3vpfQX+ZQWX2TcIOrMHc=";
|
2022-09-30 11:47:45 +00:00
|
|
|
|
};
|
|
|
|
|
"x86_64-darwin" = fetchurl {
|
|
|
|
|
url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64.zip";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
sha256 = "uESJFXTVXpK2HPUszU0l5Jgnvz28toBP/0DgVFvqYGY=";
|
2022-09-30 11:47:45 +00:00
|
|
|
|
};
|
|
|
|
|
"x86_64-linux" = fetchurl {
|
|
|
|
|
url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip";
|
2023-07-15 17:15:38 +00:00
|
|
|
|
sha256 = "5iU+1FevTjjzo/qN0zjIoCQflbWCmdfMXkx+6BOEEcc=";
|
2022-09-30 11:47:45 +00:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
updateScript = writeShellScript "update-bun" ''
|
|
|
|
|
set -o errexit
|
|
|
|
|
export PATH="${lib.makeBinPath [ curl jq common-updater-scripts ]}"
|
|
|
|
|
NEW_VERSION=$(curl --silent https://api.github.com/repos/oven-sh/bun/releases/latest | jq '.tag_name | ltrimstr("bun-v")' --raw-output)
|
|
|
|
|
if [[ "${version}" = "$NEW_VERSION" ]]; then
|
|
|
|
|
echo "The new version same as the old version."
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
for platform in ${lib.escapeShellArgs meta.platforms}; do
|
|
|
|
|
update-source-version "bun" "0" "${lib.fakeSha256}" --source-key="sources.$platform"
|
|
|
|
|
update-source-version "bun" "$NEW_VERSION" --source-key="sources.$platform"
|
|
|
|
|
done
|
|
|
|
|
'';
|
|
|
|
|
};
|
2022-07-14 12:49:19 +00:00
|
|
|
|
meta = with lib; {
|
|
|
|
|
homepage = "https://bun.sh";
|
|
|
|
|
changelog = "https://github.com/Jarred-Sumner/bun/releases/tag/bun-v${version}";
|
|
|
|
|
description = "Incredibly fast JavaScript runtime, bundler, transpiler and package manager – all in one";
|
|
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
|
|
|
longDescription = ''
|
|
|
|
|
All in one fast & easy-to-use tool. Instead of 1,000 node_modules for development, you only need bun.
|
|
|
|
|
'';
|
|
|
|
|
license = with licenses; [
|
|
|
|
|
mit # bun core
|
|
|
|
|
lgpl21Only # javascriptcore and webkit
|
|
|
|
|
];
|
2023-05-24 13:37:59 +00:00
|
|
|
|
maintainers = with maintainers; [ DAlperin jk thilobillerbeck ];
|
2022-09-30 11:47:45 +00:00
|
|
|
|
platforms = builtins.attrNames passthru.sources;
|
2022-07-14 12:49:19 +00:00
|
|
|
|
};
|
|
|
|
|
}
|