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";
|
2019-01-26 01:45:52 +00:00
|
|
|
version = "0.3.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}";
|
2019-01-26 01:45:52 +00:00
|
|
|
sha256 = "06pcwgahcbi13ca5rs6giwdw3w364lbvmzcs4ka82igvcffxjvnd";
|
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";
|
|
|
|
homepage = https://github.com/awslabs/amazon-ecr-credential-helper;
|
|
|
|
license = licenses.asl20 ;
|
|
|
|
maintainers = with maintainers; [ kalbasit ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|