Merge pull request #282893 from anthonyroussel/updates/amazon-ssm-agent

amazon-ssm-agent: 3.2.2086.0 -> 3.2.2143.0
This commit is contained in:
Mario Rodas 2024-01-23 20:05:08 -05:00 committed by GitHub
commit 3d7012b10e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,13 +42,13 @@ let
in in
buildGoModule rec { buildGoModule rec {
pname = "amazon-ssm-agent"; pname = "amazon-ssm-agent";
version = "3.2.2086.0"; version = "3.2.2143.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "aws"; owner = "aws";
repo = "amazon-ssm-agent"; repo = "amazon-ssm-agent";
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-oV/0B2VxM6Gx84FIk3bUZU5DQDXt3Jek6/Xv0ZkZ89Y="; hash = "sha256-RE17XoioTVlqASpHl6y7ykbK9sYqUIF05ROnXf05NrU=";
}; };
vendorHash = null; vendorHash = null;
@ -68,15 +68,15 @@ buildGoModule rec {
darwin.DarwinTools darwin.DarwinTools
]; ];
# See the list https://github.com/aws/amazon-ssm-agent/blob/3.2.1630.0/makefile#L120-L138 # See the list https://github.com/aws/amazon-ssm-agent/blob/3.2.2143.0/makefile#L121-L147
# The updater is not built because it cannot work on NixOS # The updater is not built because it cannot work on NixOS
subPackages = [ subPackages = [
"core" "core"
"agent" "agent"
"agent/cli-main" "agent/cli-main"
"agent/framework/processor/executer/outofproc/sessionworker"
"agent/framework/processor/executer/outofproc/worker" "agent/framework/processor/executer/outofproc/worker"
"agent/session/logging" "agent/session/logging"
"agent/framework/processor/executer/outofproc/sessionworker"
]; ];
ldflags = [ "-s" "-w" ]; ldflags = [ "-s" "-w" ];