3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/web/flyctl/default.nix

33 lines
923 B
Nix
Raw Normal View History

{ buildGoModule, fetchFromGitHub, lib }:
2020-03-08 22:30:29 +00:00
buildGoModule rec {
pname = "flyctl";
2021-08-22 01:35:10 +01:00
version = "0.0.233";
2020-03-08 22:30:29 +00:00
src = fetchFromGitHub {
owner = "superfly";
repo = "flyctl";
rev = "v${version}";
2021-08-22 01:35:10 +01:00
sha256 = "sha256-qDFO9QV6ItYv/QsnXFCViWo2CQj7hGZftVMD22QL+uQ=";
2020-03-08 22:30:29 +00:00
};
preBuild = ''
go generate ./...
'';
2020-05-19 10:20:00 +01:00
subPackages = [ "." ];
2020-03-08 22:30:29 +00:00
2021-08-22 01:35:10 +01:00
vendorSha256 = "sha256-+g0VzgdArxUTT5wDw6ddZn9YDNOXHqysye6cIrCc3Iw=";
2020-03-08 22:30:29 +00:00
doCheck = false;
2021-08-26 07:45:51 +01:00
ldflags = [ "-s" "-w" "-X github.com/superfly/flyctl/flyctl.Version=${version}" "-X github.com/superfly/flyctl/flyctl.Commit=${src.rev}" "-X github.com/superfly/flyctl/flyctl.BuildDate=1970-01-01T00:00:00+0000" "-X github.com/superfly/flyctl/flyctl.Environment=production" ];
2020-05-19 10:20:00 +01:00
meta = with lib; {
2020-03-08 22:30:29 +00:00
description = "Command line tools for fly.io services";
homepage = "https://fly.io/";
license = licenses.asl20;
maintainers = with maintainers; [ aaronjanse ];
};
}