await: 1.0.5 -> 1.0.7 (#358211)

This commit is contained in:
Jenny 2024-11-23 21:24:18 +01:00 committed by GitHub
commit 0262e2562a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,13 +8,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "await"; pname = "await";
version = "1.0.5"; version = "1.0.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "slavaGanzin"; owner = "slavaGanzin";
repo = "await"; repo = "await";
rev = "v${version}"; rev = version;
hash = "sha256-0U9eLQDvHnRUJt46AI4bDWZfGynqjaWs9teidWP3RsA="; hash = "sha256-Yrit1WdWIfjwqbjvyjrPT3EqSSkooYX+uoOstbxy//I=";
}; };
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];
@ -40,6 +40,7 @@ stdenv.mkDerivation rec {
versionCheckHook versionCheckHook
]; ];
doInstallCheck = true; doInstallCheck = true;
versionCheckProgramArg = [ "--version" ];
meta = with lib; { meta = with lib; {
description = "Small binary that runs a list of commands in parallel and awaits termination"; description = "Small binary that runs a list of commands in parallel and awaits termination";