Merge pull request #179855 from viraptor/flyctl-update

flyctl: 0.0.335 -> 0.0.346
This commit is contained in:
Mario Rodas 2022-07-01 22:53:18 -05:00 committed by GitHub
commit d245f8391c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};
}