Unverified Commit f716197b authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #200411 from r-ryantm/auto-update/ecs-agent

ecs-agent: 1.65.1 -> 1.66.1
parents b4e80096 80771ac6
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

buildGoPackage rec {
  pname   = "amazon-ecs-agent";
  version = "1.65.1";
  version = "1.66.2";

  goPackagePath = "github.com/aws/${pname}";
  subPackages   = [ "agent" ];
@@ -11,12 +11,15 @@ buildGoPackage rec {
    rev    = "v${version}";
    owner  = "aws";
    repo   = pname;
    sha256 = "sha256-IsbY2ZQQq8eOhdT/ws1Yu7YlnQOyjhDaIr1knOHB4Yc=";
    sha256 = "sha256-mZzDvD+40YiC8cBpLlYd7K1p5UBYpso9OMCDijopuik=";
  };

  ldflags = [ "-s" "-w" ];

  meta = with lib; {
    description = "The agent that runs on AWS EC2 container instances and starts containers on behalf of Amazon ECS";
    homepage    = "https://github.com/aws/amazon-ecs-agent";
    changelog   = "https://github.com/aws/amazon-ecs-agent/raw/v${version}/CHANGELOG.md";
    license     = licenses.asl20;
    platforms   = platforms.unix;
    maintainers = with maintainers; [ copumpkin ];