flyctl: 0.0.335 -> 0.0.346

Update and cleanup.
This commit is contained in:
Stanisław Pitucha 2022-07-02 12:42:04 +10:00
parent d36fd0a6f0
commit 37e00a373e

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