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
This commit is contained in:
José Ribeiro 2024-11-10 00:38:15 +00:00
parent 27b322afcf
commit 3766c3b08a
No known key found for this signature in database

View File

@ -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;