wait4x: init at 2.13.0
This commit is contained in:
parent
aead6ea9b6
commit
87c3e377e1
1 changed files with 31 additions and 0 deletions
31
pkgs/by-name/wa/wait4x/package.nix
Normal file
31
pkgs/by-name/wa/wait4x/package.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
let
|
||||
pname = "wait4x";
|
||||
version = "2.13.0";
|
||||
in
|
||||
buildGoModule {
|
||||
inherit pname version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "atkrad";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-vhYWt1vRL1iTtdZRhk3HsBnmhcp4hieN+8vsyQS4hpo=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-WY8FPRjjAFcDLMbU22pL3rFTw7fBPwCbXJDjhHDI4Kw=";
|
||||
|
||||
# Tests make network access
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Wait4X allows you to wait for a port or a service to enter the requested state";
|
||||
homepage = "https://github.com/atkrad/wait4x";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ jfvillablanca ];
|
||||
mainProgram = "wait4x";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue