9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
26 lines
848 B
Nix
26 lines
848 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "argocd-vault-plugin";
|
|
version = "1.15.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "argoproj-labs";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-59Q6T+k+bFvglhgbydH+GYqcLsZ7EeMTpVa+3EJrZpU=";
|
|
};
|
|
|
|
vendorHash = "sha256-n/bRVShxRmaXL3obRdNQ8OVWVZqWZ9qt59gRxGEUtzk=";
|
|
|
|
# integration tests require filesystem and network access for credentials
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://argocd-vault-plugin.readthedocs.io";
|
|
changelog = "https://github.com/argoproj-labs/argocd-vault-plugin/releases/tag/v${version}";
|
|
description = "An Argo CD plugin to retrieve secrets from Secret Management tools and inject them into Kubernetes secrets";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ urandom ];
|
|
};
|
|
}
|