2018-07-24 09:33:58 +01:00
|
|
|
{ buildGoPackage, fetchFromGitHub, lib, ... }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "amazon-ecr-credential-helper";
|
2020-07-03 08:57:54 +01:00
|
|
|
version = "0.4.0";
|
2018-07-24 09:33:58 +01:00
|
|
|
|
|
|
|
goPackagePath = "github.com/awslabs/amazon-ecr-credential-helper";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "awslabs";
|
|
|
|
repo = "amazon-ecr-credential-helper";
|
|
|
|
rev = "v${version}";
|
2020-07-03 08:57:54 +01:00
|
|
|
sha256 = "1whwxjzlyzyvrf2mzbd7my2kdz5fdbr79g18g9h4xrg8xyzk1k5q";
|
2018-07-24 09:33:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "The Amazon ECR Docker Credential Helper is a credential helper for the Docker daemon that makes it easier to use Amazon Elastic Container Registry";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/awslabs/amazon-ecr-credential-helper";
|
2018-07-24 09:33:58 +01:00
|
|
|
license = licenses.asl20 ;
|
|
|
|
maintainers = with maintainers; [ kalbasit ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|