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