nixpkgs-suyu/pkgs/development/web/flyctl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.7 KiB
Nix
Raw Normal View History

2022-07-07 16:54:50 +02:00
{ lib, buildGoModule, fetchFromGitHub, testers, flyctl, installShellFiles }:
2020-03-08 23:30:29 +01:00
buildGoModule rec {
pname = "flyctl";
2022-07-11 09:19:03 +02:00
version = "0.0.351";
2020-03-08 23:30:29 +01:00
src = fetchFromGitHub {
owner = "superfly";
repo = "flyctl";
rev = "v${version}";
2022-07-11 09:19:03 +02:00
sha256 = "sha256-vxX11kaQMOQ2LJ/2q4QrlzMmuJtkn1Oe1iBHQgXn0mI=";
2020-03-08 23:30:29 +01:00
};
2022-07-11 09:19:03 +02:00
vendorSha256 = "sha256-gAdKrPU6js3zrzX2+NWQZSXxGuuUiggprua4gvd++OQ=";
2020-03-08 23:30:29 +01:00
2020-05-19 11:20:00 +02:00
subPackages = [ "." ];
2020-03-08 23:30:29 +01:00
2022-04-17 17:37:19 +02:00
ldflags = [
"-s" "-w"
"-X github.com/superfly/flyctl/internal/buildinfo.commit=${src.rev}"
2022-05-09 23:02:34 +02:00
"-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.version=${version}"
2022-04-17 17:37:19 +02:00
];
2020-03-08 23:30:29 +01:00
2022-07-07 16:54:50 +02:00
nativeBuildInputs = [ installShellFiles ];
2022-04-17 17:37:19 +02:00
preBuild = ''
go generate ./...
'';
preCheck = ''
HOME=$(mktemp -d)
'';
2022-04-17 17:37:19 +02:00
postCheck = ''
go test ./... -ldflags="-X 'github.com/superfly/flyctl/internal/buildinfo.buildDate=1970-01-01T00:00:00Z'"
2022-04-17 17:37:19 +02:00
'';
2020-05-19 11:20:00 +02:00
2022-07-07 16:54:50 +02:00
postInstall = ''
installShellCompletion --cmd flyctl \
--bash <($out/bin/flyctl completion bash) \
--fish <($out/bin/flyctl completion fish) \
--zsh <($out/bin/flyctl completion zsh)
'';
passthru.tests.version = testers.testVersion {
package = flyctl;
command = "HOME=$(mktemp -d) flyctl version";
version = "v${flyctl.version}";
};
meta = with lib; {
2020-03-08 23:30:29 +01:00
description = "Command line tools for fly.io services";
2022-04-17 17:37:19 +02:00
downloadPage = "https://github.com/superfly/flyctl";
2020-03-08 23:30:29 +01:00
homepage = "https://fly.io/";
license = licenses.asl20;
maintainers = with maintainers; [ aaronjanse jsierles techknowlogick viraptor ];
2020-03-08 23:30:29 +01:00
};
}