2018-12-21 04:07:51 +01:00
|
|
|
{ stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "amazon-ecs-cli";
|
2019-10-23 16:58:23 +02:00
|
|
|
version = "1.17.0";
|
2018-12-21 04:07:51 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://s3.amazonaws.com/amazon-ecs-cli/ecs-cli-linux-amd64-v${version}";
|
2019-10-23 16:58:23 +02:00
|
|
|
sha256 = "0dqnxzfdic3v10rr8k83zfbv7qc3yanajd81a0amzs778sqp7x9f";
|
2018-12-21 04:07:51 +01:00
|
|
|
};
|
|
|
|
|
2019-06-19 17:45:34 +02:00
|
|
|
dontUnpack = true;
|
2018-12-21 04:07:51 +01: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" ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|