Skip to content

Commit

Permalink
ecs-agent: init at 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
copumpkin committed Feb 10, 2017
1 parent a848643 commit 03cab2d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/applications/virtualization/ecs-agent/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, buildGoPackage }:

buildGoPackage rec {
name = "${pname}-${version}";
pname = "amazon-ecs-agent";
version = "1.14.0";

goPackagePath = "github.com/aws/${pname}";
subPackages = [ "agent" ];

src = fetchFromGitHub {
rev = "v${version}";
owner = "aws";
repo = pname;
sha256 = "12c8l0x8pm883rlbdr1m07r0kjkzggkfz35cjqz8pzyr5ymjdrc3";
};

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.linux;
maintainers = with maintainers; [ copumpkin ];
};
}

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12894,6 +12894,8 @@ with pkgs;

eclipses = recurseIntoAttrs (callPackage ../applications/editors/eclipse { });

ecs-agent = callPackage ../applications/virtualization/ecs-agent { };

ed = callPackage ../applications/editors/ed { };

edbrowse = callPackage ../applications/editors/edbrowse { };
Expand Down

0 comments on commit 03cab2d

Please sign in to comment.