toxic: 0.15.1 -> 0.16.0
[NixPkgs.git] / pkgs / by-name / wa / wait4x / package.nix
blob53be1b07c4fa7524cbc8f259c7dc7a4260b7592e
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
6 let
7   pname = "wait4x";
8   version = "2.14.2";
9 in
10 buildGoModule {
11   inherit pname version;
13   src = fetchFromGitHub {
14     owner = "atkrad";
15     repo = pname;
16     rev = "v${version}";
17     hash = "sha256-fNPZ/qgAn4odd5iWnDK1RWPxeBhS/l4ffHLFB27SAoM=";
18   };
20   vendorHash = "sha256-Eio6CoYaChG59rHL4tfl7dNWliD7ksRyhoCPxMvMmrQ=";
22   # Tests make network access
23   doCheck = false;
25   meta = with lib; {
26     description = "Wait4X allows you to wait for a port or a service to enter the requested state";
27     homepage = "https://github.com/atkrad/wait4x";
28     license = licenses.asl20;
29     maintainers = with maintainers; [ jfvillablanca ];
30     mainProgram = "wait4x";
31   };