tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
bun: 1.0.15 -> 1.0.16
happysalada
2 years ago
3df29656
30ce319f
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
development
web
bun
default.nix
+5
-5
pkgs/development/web/bun/default.nix
···
12
12
}:
13
13
14
14
stdenvNoCC.mkDerivation rec {
15
15
-
version = "1.0.15";
15
15
+
version = "1.0.16";
16
16
pname = "bun";
17
17
18
18
src = passthru.sources.${stdenvNoCC.hostPlatform.system} or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}");
···
51
51
sources = {
52
52
"aarch64-darwin" = fetchurl {
53
53
url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-aarch64.zip";
54
54
-
hash = "sha256-3EUVa/v/1Q42IPysoUT/N7Adtwq//79ibTpQgrpzl1I=";
54
54
+
hash = "sha256-jp8ZQ7l8uBdoVQsLpm3AgfBF3XhNzZOhimSUmSVqOEY=";
55
55
};
56
56
"aarch64-linux" = fetchurl {
57
57
url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip";
58
58
-
hash = "sha256-WEt/oIleK3f+waEIiR+umdbxvMpeF+sTVTcy1DE0yKY=";
58
58
+
hash = "sha256-BSU2iTo+AGcOdPSgW4CRYcDS4KgAvpOmSZE7JDEtV00=";
59
59
};
60
60
"x86_64-darwin" = fetchurl {
61
61
url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64.zip";
62
62
-
hash = "sha256-VGJYg3im6KzS3YZevorzeomYQIiYVEVP1K7YIXRzzUE=";
62
62
+
hash = "sha256-XAzV8LBrzhZ5w1YBMlTBI1iov5/ZrrRVLzqnWfcCgyI=";
63
63
};
64
64
"x86_64-linux" = fetchurl {
65
65
url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip";
66
66
-
hash = "sha256-8US2sbirFOAFXfGvHm9VqPORjUzJN/K+0/BcgK4FVcI=";
66
66
+
hash = "sha256-2f/n/aKJO2LnCWohYSQ3zukuXZ+cKFzem+mKeYQnoTc=";
67
67
};
68
68
};
69
69
updateScript = writeShellScript "update-bun" ''