nixpkgs/pkgs/tools/security/argocd-vault-plugin/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
848 B
Nix
Raw Normal View History

{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "argocd-vault-plugin";
2023-03-26 05:40:34 +00:00
version = "1.14.0";
src = fetchFromGitHub {
owner = "argoproj-labs";
repo = pname;
rev = "v${version}";
2023-03-26 05:40:34 +00:00
hash = "sha256-TIZpeCYj8i/RbWqYn6js70QtQsnAF0itHCs+2mjwuGg=";
};
2023-03-26 05:40:34 +00:00
vendorHash = "sha256-awa3hbM9/9YR7amx/VVOEWgzK/l8OjOemDFpYojfOwg=";
# 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 ];
};
}