blob: cda1465414575f038b3ab25563a5ff4a28e0ccc6 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
lib,
buildGoModule,
fetchFromGitHub,
}:
let
pname = "wait4x";
version = "3.5.1";
in
buildGoModule {
inherit pname version;
src = fetchFromGitHub {
owner = "wait4x";
repo = "wait4x";
rev = "v${version}";
hash = "sha256-VAt61k2eHQwyLSsvbWxe7jJ/Wyj4U4O2+LzCsoP/Yq4=";
};
vendorHash = "sha256-KJOKLTjwwgu2MFNIRDk8eeSVnZyjO9dfVyWrF5vqj9g=";
# 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/wait4x/wait4x";
license = licenses.asl20;
maintainers = with maintainers; [ jfvillablanca ];
mainProgram = "wait4x";
};
}
|