Merge pull request #265437 from viraptor/flyctl-117
flyctl: 0.1.104 -> 0.1.117
This commit is contained in:
commit
15492ddc29
1 changed files with 5 additions and 6 deletions
|
@ -2,26 +2,25 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "flyctl";
|
pname = "flyctl";
|
||||||
version = "0.1.104";
|
version = "0.1.117";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "superfly";
|
owner = "superfly";
|
||||||
repo = "flyctl";
|
repo = "flyctl";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-iTizgA3MtcG6YN7aHaZF4UXT6jBKodsMxXG61UgDNaQ=";
|
hash = "sha256-cB1t7TKAqHuzbvrXkOMJPXtNXTqNB/TBDS3OHYX96ko=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorHash = "sha256-5Nu9XpYjlZHGazWTK7LmfnEGgewKa017PLHtV9HycD0=";
|
vendorHash = "sha256-+mCOSgRmvfAXHwtLup3vYhLY0zTtXIJeOtYD69B4/7o=";
|
||||||
|
|
||||||
subPackages = [ "." ];
|
subPackages = [ "." ];
|
||||||
|
|
||||||
ldflags = [
|
ldflags = [
|
||||||
"-s" "-w"
|
"-s" "-w"
|
||||||
"-X github.com/superfly/flyctl/internal/buildinfo.commit=${src.rev}"
|
|
||||||
"-X github.com/superfly/flyctl/internal/buildinfo.buildDate=1970-01-01T00:00:00Z"
|
"-X github.com/superfly/flyctl/internal/buildinfo.buildDate=1970-01-01T00:00:00Z"
|
||||||
"-X github.com/superfly/flyctl/internal/buildinfo.environment=production"
|
"-X github.com/superfly/flyctl/internal/buildinfo.buildVersion=${version}"
|
||||||
"-X github.com/superfly/flyctl/internal/buildinfo.version=${version}"
|
|
||||||
];
|
];
|
||||||
|
tags = ["production"];
|
||||||
|
|
||||||
nativeBuildInputs = [ installShellFiles ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue