tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
amazon-ecs-cli: init at 1.12.1
Fritz Otlinghaus
7 years ago
8cb8b2be
3c38cc80
+32
2 changed files
expand all
collapse all
unified
split
pkgs
tools
virtualization
amazon-ecs-cli
default.nix
top-level
all-packages.nix
+30
pkgs/tools/virtualization/amazon-ecs-cli/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ stdenv, fetchurl}:
2
+
3
+
stdenv.mkDerivation rec {
4
+
name = "amazon-ecs-cli-${version}";
5
+
version = "1.12.1";
6
+
7
+
src = fetchurl {
8
+
url = "https://s3.amazonaws.com/amazon-ecs-cli/ecs-cli-linux-amd64-v${version}";
9
+
sha256 = "100iv4cchnxl1s02higga5v3hvawi4c7sqva97x34qigr4r7fxwm";
10
+
};
11
+
12
+
unpackPhase = ":";
13
+
14
+
installPhase =
15
+
''
16
+
mkdir -p $out/bin
17
+
cp $src $out/bin/ecs-cli
18
+
chmod +x $out/bin/ecs-cli
19
+
''; # */
20
+
21
+
meta = with stdenv.lib; {
22
+
homepage = https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ECS_CLI.html;
23
+
description = "The Amazon ECS command line interface";
24
+
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.";
25
+
license = licenses.asl20;
26
+
maintainers = with maintainers; [ Scriptkiddi ];
27
+
platforms = [ "x86_64-linux" ];
28
+
};
29
+
}
30
+
+2
pkgs/top-level/all-packages.nix
···
528
inherit (darwin.apple_sdk.frameworks) AppKit CoreFoundation CoreGraphics CoreServices CoreText Foundation OpenGL;
529
};
530
0
0
531
amazon-glacier-cmd-interface = callPackage ../tools/backup/amazon-glacier-cmd-interface { };
532
533
ammonite = callPackage ../development/tools/ammonite {};
···
528
inherit (darwin.apple_sdk.frameworks) AppKit CoreFoundation CoreGraphics CoreServices CoreText Foundation OpenGL;
529
};
530
531
+
amazon-ecs-cli = callPackage ../tools/virtualization/amazon-ecs-cli { };
532
+
533
amazon-glacier-cmd-interface = callPackage ../tools/backup/amazon-glacier-cmd-interface { };
534
535
ammonite = callPackage ../development/tools/ammonite {};