Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3aca0e1e6c2d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 203443ed86de
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 9, 2020

  1. deno: 1.5.1 -> 1.5.2

    06kellyjac committed Nov 9, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    e50d10b View commit details
  2. Copy the full SHA
    24ff394 View commit details

Commits on Nov 10, 2020

  1. Merge pull request #103237 from 06kellyjac/deno_1.5.2

    deno: 1.5.1 -> 1.5.2
    marsam authored Nov 10, 2020
    Copy the full SHA
    203443e View commit details
Showing with 7 additions and 8 deletions.
  1. +7 −8 pkgs/development/web/deno/default.nix
15 changes: 7 additions & 8 deletions pkgs/development/web/deno/default.nix
Original file line number Diff line number Diff line change
@@ -18,16 +18,16 @@ let
in
rustPlatform.buildRustPackage rec {
pname = "deno";
version = "1.5.1";
version = "1.5.2";

src = fetchFromGitHub {
owner = "denoland";
repo = pname;
rev = "v${version}";
sha256 = "19ki9qyg9q26jq4jkcf8b6xhy4g4cn30zqccgl3324mnijhl33jk";
sha256 = "0dpx74zp85a3qcabfmwnsh1kl0c74ygafybqzmyvwjmax0hdgkq6";
fetchSubmodules = true;
};
cargoSha256 = "1q3gmilphkbh54y7m711ccr1gr5slk2nn91qq61rmmphyylwkgv2";
cargoSha256 = "0358vbpda9x0ib0vla4crn052lk299x2hg14g8lzymg33277lk3p";

# Install completions post-install
nativeBuildInputs = [ installShellFiles ];
@@ -52,15 +52,14 @@ rustPlatform.buildRustPackage rec {
# Skipping until resolved
doCheck = false;

# TODO: Move to enhanced installShellCompletion when merged: PR #83630
postInstall = ''
# remove test plugin and test server
rm -rf $out/lib $out/bin/test_server
$out/bin/deno completions bash > deno.bash
$out/bin/deno completions fish > deno.fish
$out/bin/deno completions zsh > _deno
installShellCompletion deno.{bash,fish} --zsh _deno
installShellCompletion --cmd deno \
--bash <($out/bin/deno completions bash) \
--fish <($out/bin/deno completions fish) \
--zsh <($out/bin/deno completions zsh)
'';

passthru.updateScript = ./update/update.ts;