nixpkgs/pkgs/applications/virtualization/ecs-agent/default.nix

26 lines
702 B
Nix
Raw Normal View History

2017-02-10 04:33:48 +00:00
{ stdenv, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
pname = "amazon-ecs-agent";
2018-06-25 09:15:40 +00:00
version = "1.18.0";
2017-02-10 04:33:48 +00:00
goPackagePath = "github.com/aws/${pname}";
subPackages = [ "agent" ];
src = fetchFromGitHub {
rev = "v${version}";
owner = "aws";
repo = pname;
2018-06-25 09:15:40 +00:00
sha256 = "1l6c2if6wpjmq2hh6k818w38s1rsbwgd6igqy948dwcrb1g1mixr";
2017-02-10 04:33:48 +00:00
};
meta = with stdenv.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";
license = licenses.asl20;
platforms = platforms.unix;
2017-02-10 04:33:48 +00:00
maintainers = with maintainers; [ copumpkin ];
};
}