Merge pull request #214849 from urandom2/argocd

Fixes https://github.com/NixOS/nixpkgs/issues/214629
This commit is contained in:
Sandro 2023-02-07 01:50:09 +01:00 committed by GitHub
commit c7651975cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "argocd-vault-plugin";
version = "1.13.1";
src = fetchFromGitHub {
owner = "argoproj-labs";
repo = pname;
rev = "v${version}";
hash = "sha256-BuPNmGWKvjWkMCyyAFZeSCcnBUeaoduw7fZe07WD3Jo=";
};
vendorHash = "sha256-jxuYT63FxylQinJ9paPk/Ut0aFX5gdLOS4ugzrtRIF0=";
# 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 ];
};
}

View File

@ -1385,6 +1385,8 @@ with pkgs;
arch-install-scripts = callPackage ../tools/misc/arch-install-scripts {};
argocd-vault-plugin = callPackage ../tools/security/argocd-vault-plugin {};
arubaotp-seed-extractor = callPackage ../tools/security/arubaotp-seed-extractor { };
audible-cli = callPackage ../tools/misc/audible-cli { };