nixpkgs/pkgs/tools/virtualization/amazon-ecs-cli/default.nix

31 lines
966 B
Nix
Raw Normal View History

2018-12-21 03:07:51 +00:00
{ stdenv, fetchurl}:
stdenv.mkDerivation rec {
pname = "amazon-ecs-cli";
2019-11-25 07:31:40 +00:00
version = "1.18.0";
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-11-25 07:31:40 +00:00
sha256 = "1w4n7rkcxpdzg7450s22a80a27g845n61k2bdfhq4c1md7604nyz";
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
''; # */
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" ];
};
}