Unverified Commit 3766c3b0 authored by José Ribeiro's avatar José Ribeiro
Browse files

zx: 8.2.0 -> 8.2.1

Diff: https://github.com/google/zx/compare/8.2.0...8.2.1
Changelog: https://github.com/google/zx/releases/tag/8.2.1

Temporarily pinning the commit which modifies package.json,
as that affects the version reported by the CLI
(causing `versionCheckHook` to fail).

0f2be5b053b7649fca84c92cd04310b94e297413~ == refs/tags/8.2.1

See:
- https://github.com/google/zx/issues/938
- https://github.com/google/zx/pull/939
parent 27b322af
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -8,16 +8,16 @@

buildNpmPackage rec {
  pname = "zx";
  version = "8.2.0";
  version = "8.2.1";

  src = fetchFromGitHub {
    owner = "google";
    repo = "zx";
    rev = version;
    hash = "sha256-tu5arRnbIVEVkmLBrutW8rNIHN3joA87AYyO+Smmcug=";
    rev = "0f2be5b053b7649fca84c92cd04310b94e297413";
    hash = "sha256-4shiST6KMWc89AkAv8A5MQJGDWuwyRwOwKHuAVUcbbg=";
  };

  npmDepsHash = "sha256-TEVEa0hvSRFp1ju1Ajer4u7mdf4y/N3ged8wuXzyy8A=";
  npmDepsHash = "sha256-IYx0g3Fxi4/iuljo8mDlQtTGHhJilDPXYHC2xe6P5fs=";

  nativeInstallCheckInputs = [ versionCheckHook ];
  doInstallCheck = true;