2022-12-03T11:48:28 copilot-cli 1.23.0 -> 1.24.0 https://repology.org/metapackage/copilot-cli/versions 2022-12-03T11:48:30 attrpath: copilot-cli 2022-12-03T11:48:30 Checking auto update branch... 2022-12-03T11:48:30 No auto update branch exists 2022-12-03T11:48:31 Old version 1.23.0" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, copilot-cli }: buildGoModule rec { pname = "copilot-cli"; version = "1.24.0"; src = fetchFromGitHub { owner = "aws"; repo = pname; rev = "v${version}"; sha256 = "sha256-OTt9sJuLv+fY2OTK4FGl15/YmxnPRqGXNnKYl9TtHxE="; }; vendorSha256 = "sha256-dH39ZpATq5Oafr7Guc+zYUhjlAgiwpc5HKHWlMm4buU="; 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 ]; }; }