mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 12:14:40 +00:00
ecs-agent: init at 1.14.0
This commit is contained in:
parent
a848643709
commit
03cab2d923
26
pkgs/applications/virtualization/ecs-agent/default.nix
Normal file
26
pkgs/applications/virtualization/ecs-agent/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, buildGoPackage }:
|
||||||
|
|
||||||
|
buildGoPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "amazon-ecs-agent";
|
||||||
|
version = "1.14.0";
|
||||||
|
|
||||||
|
goPackagePath = "github.com/aws/${pname}";
|
||||||
|
subPackages = [ "agent" ];
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
rev = "v${version}";
|
||||||
|
owner = "aws";
|
||||||
|
repo = pname;
|
||||||
|
sha256 = "12c8l0x8pm883rlbdr1m07r0kjkzggkfz35cjqz8pzyr5ymjdrc3";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "The agent that runs on AWS EC2 container instances and starts containers on behalf of Amazon ECS";
|
||||||
|
homepage = "https://github.com/aws/amazon-ecs-agent";
|
||||||
|
license = licenses.asl20;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ copumpkin ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -12894,6 +12894,8 @@ with pkgs;
|
|||||||
|
|
||||||
eclipses = recurseIntoAttrs (callPackage ../applications/editors/eclipse { });
|
eclipses = recurseIntoAttrs (callPackage ../applications/editors/eclipse { });
|
||||||
|
|
||||||
|
ecs-agent = callPackage ../applications/virtualization/ecs-agent { };
|
||||||
|
|
||||||
ed = callPackage ../applications/editors/ed { };
|
ed = callPackage ../applications/editors/ed { };
|
||||||
|
|
||||||
edbrowse = callPackage ../applications/editors/edbrowse { };
|
edbrowse = callPackage ../applications/editors/edbrowse { };
|
||||||
|
Loading…
Reference in New Issue
Block a user