mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 01:03:25 +00:00
33 lines
822 B
Nix
33 lines
822 B
Nix
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "amazon-ecs-agent";
|
|
version = "1.87.1";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "aws";
|
|
repo = pname;
|
|
hash = "sha256-thgFlfEyjetNciBCIx1XFW4U59BL9TpRT9E7v4bac6s=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
modRoot = "./agent";
|
|
|
|
excludedPackages = [ "./version/gen" ];
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = with lib; {
|
|
description = "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.linux;
|
|
maintainers = with maintainers; [ copumpkin ];
|
|
mainProgram = "agent";
|
|
};
|
|
}
|
|
|