mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, copilot-cli }:
|
|
|
|
buildGoModule rec {
|
|
pname = "copilot-cli";
|
|
version = "1.26.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aws";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-pmP1PqkLq5rkod896oRsSY3UX6q7F4kVREw8R+mLf2Y=";
|
|
};
|
|
|
|
vendorHash = "sha256-jvK4xI0Pvv0ed6uSmfXltUkVmG4RqId4zEI9JFDzoBQ=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
# follow LINKER_FLAGS in Makefile
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/aws/copilot-cli/internal/pkg/version.Version=${version}"
|
|
"-X github.com/aws/copilot-cli/internal/pkg/cli.binaryS3BucketPath=https://ecs-cli-v2-release.s3.amazonaws.com"
|
|
];
|
|
|
|
subPackages = [ "./cmd/copilot" ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd copilot \
|
|
--bash <($out/bin/copilot completion bash) \
|
|
--fish <($out/bin/copilot completion fish) \
|
|
--zsh <($out/bin/copilot completion zsh)
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = copilot-cli;
|
|
command = "copilot version";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Build, Release and Operate Containerized Applications on AWS.";
|
|
homepage = "https://github.com/aws/copilot-cli";
|
|
changelog = "https://github.com/aws/copilot-cli/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ jiegec ];
|
|
};
|
|
}
|