diff --git a/pkgs/development/web/flyctl/default.nix b/pkgs/development/web/flyctl/default.nix index c9d36dd679ad..a2ee52bdfa06 100644 --- a/pkgs/development/web/flyctl/default.nix +++ b/pkgs/development/web/flyctl/default.nix @@ -1,17 +1,17 @@ -{ buildGoModule, fetchFromGitHub, lib, testers, flyctl }: +{ lib, buildGoModule, fetchFromGitHub, testers, flyctl }: buildGoModule rec { pname = "flyctl"; - version = "0.0.335"; + version = "0.0.346"; src = fetchFromGitHub { owner = "superfly"; repo = "flyctl"; rev = "v${version}"; - sha256 = "sha256-da7fKtByg3zwtRmsObs5SV6E9bVBe9KyVzn1eE3PcV8="; + sha256 = "sha256-CUv/zF323tplvyAfpTWGALFV3RKpkMmxiXx3gX8ZO3A="; }; - vendorSha256 = "sha256-Hn4uB9HYHVS3p9zBpOzOiyTHMmjN8YmVxHZAj1V7y2I="; + vendorSha256 = "sha256-x2mJ1FO/a4eMHpEPLGdatUoY+Bt0RGElENJYUEsqcMU="; subPackages = [ "." ]; @@ -46,6 +46,6 @@ buildGoModule rec { downloadPage = "https://github.com/superfly/flyctl"; homepage = "https://fly.io/"; license = licenses.asl20; - maintainers = with maintainers; [ aaronjanse jsierles techknowlogick ]; + maintainers = with maintainers; [ aaronjanse jsierles techknowlogick viraptor ]; }; }