Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

helm-sops: init at 20250205-1 #392643

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -16199,6 +16199,11 @@
githubId = 48406064;
keys = [ { fingerprint = "6FAD DB43 D5A5 FE52 6835 0943 5B33 79E9 81EF 48B1"; } ];
};
mrupnikm = {
github = "mrupnikm";
githubId = 93078189;
name = "Matic Rupnik";
};
mrVanDalo = {
email = "contact@ingolf-wagner.de";
github = "mrVanDalo";
33 changes: 33 additions & 0 deletions pkgs/by-name/he/helm-sops/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
helm,
sops,
}:

buildGoModule rec {
pname = "helm-sops";
version = "20250205-1";
src = fetchFromGitHub {
owner = "camptocamp";
repo = "helm-sops";
rev = "20250205-1";
sha256 = "sha256-xkHv+PM2acwk9uwAHlVgBbJKhofAU60KJykMEx7Zq8I=";
};

vendorHash = "sha256-jynNpi9XRaLLW1rbvFTgX5CHDoJxagFpx9nGK0F2H0Y=";

nativeBuildInputs = [
helm
sops
];

meta = with lib; {
description = "A Helm plugin to encrypt secrets with SOPS";
homepage = "https://github.com/camptocamp/helm-sops";
license = licenses.gpl3Only;
maintainers = with maintainers; [ mrupnikm ];
};
}