2018-12-21 03:07:51 +00:00
|
|
|
{ stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "amazon-ecs-cli-${version}";
|
2019-07-15 06:24:43 +01:00
|
|
|
version = "1.15.1";
|
2018-12-21 03:07:51 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://s3.amazonaws.com/amazon-ecs-cli/ecs-cli-linux-amd64-v${version}";
|
2019-07-15 06:24:43 +01:00
|
|
|
sha256 = "0p0z12b6z00sxzjfsvb37czgczrsi61klr5azan0f8wf32x6wc28";
|
2018-12-21 03:07:51 +00:00
|
|
|
};
|
|
|
|
|
2019-06-19 16:45:34 +01:00
|
|
|
dontUnpack = true;
|
2018-12-21 03:07:51 +00:00
|
|
|
|
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp $src $out/bin/ecs-cli
|
|
|
|
chmod +x $out/bin/ecs-cli
|
|
|
|
''; # */
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ECS_CLI.html;
|
|
|
|
description = "The Amazon ECS command line interface";
|
|
|
|
longDescription = "The Amazon Elastic Container Service (Amazon ECS) command line interface (CLI) provides high-level commands to simplify creating, updating, and monitoring clusters and tasks from a local development environment.";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ Scriptkiddi ];
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|