2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl}:
|
2018-12-21 03:07:51 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "amazon-ecs-cli";
|
2020-12-29 13:34:19 +00:00
|
|
|
version = "1.21.0";
|
2018-12-21 03:07:51 +00:00
|
|
|
|
2019-12-13 05:03:16 +00:00
|
|
|
src =
|
|
|
|
if stdenv.hostPlatform.system == "x86_64-linux" then
|
|
|
|
fetchurl {
|
|
|
|
url = "https://s3.amazonaws.com/amazon-ecs-cli/ecs-cli-linux-amd64-v${version}";
|
2020-12-29 13:34:19 +00:00
|
|
|
sha256 = "sEHwhirU2EYwtBRegiIvN4yr7VKtmy7e6xx5gZOkuY0=";
|
2019-12-13 05:03:16 +00:00
|
|
|
}
|
|
|
|
else if stdenv.hostPlatform.system == "x86_64-darwin" then
|
|
|
|
fetchurl {
|
|
|
|
url = "https://s3.amazonaws.com/amazon-ecs-cli/ecs-cli-darwin-amd64-v${version}";
|
2020-12-29 13:34:19 +00:00
|
|
|
sha256 = "1viala49sifpcmgn3jw24h5bkrlm4ffadjiqagbxj3lr0r78i9nm";
|
2019-12-13 05:03:16 +00:00
|
|
|
}
|
|
|
|
else throw "Architecture not supported";
|
2018-12-21 03:07:51 +00:00
|
|
|
|
2019-06-19 15:45:34 +00: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
|
|
|
|
''; # */
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ECS_CLI.html";
|
2018-12-21 03:07:51 +00:00
|
|
|
description = "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.";
|
2022-06-11 11:39:29 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2018-12-21 03:07:51 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ Scriptkiddi ];
|
2019-12-13 05:03:16 +00:00
|
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
2023-11-23 21:09:35 +00:00
|
|
|
mainProgram = "ecs-cli";
|
2018-12-21 03:07:51 +00:00
|
|
|
};
|
|
|
|
}
|