deno: 1.5.3 -> 1.5.4

This commit is contained in:
06kellyjac 2020-12-01 14:40:25 +00:00
parent 4df737c880
commit 68e0f805cd
2 changed files with 11 additions and 9 deletions

View File

@ -18,16 +18,16 @@ let
in in
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "deno"; pname = "deno";
version = "1.5.3"; version = "1.5.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "denoland"; owner = "denoland";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "0dxjcab10kqfkflq1x9np5wxlysq33swdwi2f28bi7q312sw5x2y"; sha256 = "1m1hcnfy93lw9qgihkdsj4b8kwqa1za00d44rffc3wrcrkriks53";
fetchSubmodules = true; fetchSubmodules = true;
}; };
cargoSha256 = "0lhdrsvmf5b4fq2yg9vc00q1sgc1fjk0fh5axs2zffcpsp73ay2k"; cargoSha256 = "0fhiba7ng4jcq0ngpcfwh31dz0b25absg74g3f8kflz2a49fhwp9";
# Install completions post-install # Install completions post-install
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];
@ -58,8 +58,10 @@ rustPlatform.buildRustPackage rec {
installShellCompletion --cmd deno \ installShellCompletion --cmd deno \
--bash <($out/bin/deno completions bash) \ --bash <($out/bin/deno completions bash) \
--fish <($out/bin/deno completions fish) \ --fish <($out/bin/deno completions fish)
--zsh <($out/bin/deno completions zsh) # deno zsh completion broken since 1.5.4
# waiting for fix https://github.com/denoland/deno/issues/8472
# --zsh <($out/bin/deno completions zsh)
''; '';
passthru.updateScript = ./update/update.ts; passthru.updateScript = ./update/update.ts;

View File

@ -2,11 +2,11 @@
{}: {}:
rec { rec {
rustyV8Lib = { rustyV8Lib = {
version = "0.12.0"; version = "0.13.0";
sha256s = { sha256s = {
x86_64-linux = "18pim960fh18wrdkhirlj4hnnbxrk172r7yksdn2k5z9lgccighg"; x86_64-linux = "14xp5kac99ixrgx0d45kls54ihfs8g2qqnqir9r8fgsybl3imhyx";
aarch64-linux = "0d1c8kcz44n1mqprspnshzbqlqw7mq7vryxpmd49gw3fvhcy66y7"; aarch64-linux = "01b98cvazbzmb540j1w8b770xb9j23af61qb9f9kslb510k1jcdr";
x86_64-darwin = "1pc2dfq8p1a8dahkc4g8r6b9zwnvds60zc2lgbf8cj5n0ijd06y1"; x86_64-darwin = "0qw2whg8xqvp49mfv0li6baalzj2ydc9y2xn61bnyvif8ykpgw7h";
}; };
}; };
} }