62 lines
1.8 KiB
Nix
62 lines
1.8 KiB
Nix
|
{ stdenvNoCC, callPackage, fetchurl, autoPatchelfHook, unzip, openssl, lib }:
|
|||
|
let
|
|||
|
dists = {
|
|||
|
aarch64-darwin = {
|
|||
|
arch = "aarch64";
|
|||
|
shortName = "darwin";
|
|||
|
sha256 = "sha256-6mi1I8dga16dQLFy2+qa4dzDzlW6J0fdiv104Re3cZ0=";
|
|||
|
};
|
|||
|
|
|||
|
x86_64-darwin = {
|
|||
|
arch = "x64";
|
|||
|
shortName = "darwin";
|
|||
|
sha256 = "sha256-RGlpwRKLo4Y6uPvwubclIg3wJWePgKTDJvuzdxOrtfM=";
|
|||
|
};
|
|||
|
|
|||
|
x86_64-linux = {
|
|||
|
arch = "x64";
|
|||
|
shortName = "linux";
|
|||
|
sha256 = "sha256-Xjm+1wkAsC5Mn6Fm4MRdGyL4gpw2L++N0nKo7ofXLXs=";
|
|||
|
};
|
|||
|
};
|
|||
|
dist = dists.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}");
|
|||
|
in
|
|||
|
stdenvNoCC.mkDerivation rec {
|
|||
|
version = "0.1.2";
|
|||
|
pname = "bun";
|
|||
|
|
|||
|
src = fetchurl {
|
|||
|
url = "https://github.com/Jarred-Sumner/bun-releases-for-updater/releases/download/bun-v${version}/bun-${dist.shortName}-${dist.arch}.zip";
|
|||
|
sha256 = dist.sha256;
|
|||
|
};
|
|||
|
|
|||
|
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
|
|||
|
'';
|
|||
|
|
|||
|
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
|
|||
|
];
|
|||
|
maintainers = with maintainers; [ DAlperin jk ];
|
|||
|
platforms = builtins.attrNames dists;
|
|||
|
};
|
|||
|
}
|