Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
testers,
|
|
amazon-ecr-credential-helper,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "amazon-ecr-credential-helper";
|
|
version = "0.10.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "awslabs";
|
|
repo = "amazon-ecr-credential-helper";
|
|
tag = "v${version}";
|
|
sha256 = "sha256-ZlGXcU3oh/90lP6AjeaFvroZGHUIm0TPoKiKaYMGifA=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
modRoot = "./ecr-login";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X github.com/awslabs/amazon-ecr-credential-helper/ecr-login/version.Version=${version}"
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = amazon-ecr-credential-helper;
|
|
command = "docker-credential-ecr-login -v";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Amazon ECR Docker Credential Helper is a credential helper for the Docker daemon that makes it easier to use Amazon Elastic Container Registry";
|
|
homepage = "https://github.com/awslabs/amazon-ecr-credential-helper";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ kalbasit ];
|
|
mainProgram = "docker-credential-ecr-login";
|
|
};
|
|
}
|