2021-02-21 02:25:38 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "kustomize-sops";
|
2021-04-12 20:34:34 +01:00
|
|
|
version = "2.5.2";
|
2021-02-21 02:25:38 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "viaduct-ai";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-04-12 20:34:34 +01:00
|
|
|
sha256 = "sha256-c8v9O3ufTZ7/rWwLNoak0ITlEVlOg9MvheRjQIxPwKc=";
|
2021-02-21 02:25:38 +00:00
|
|
|
};
|
|
|
|
|
2021-03-27 15:00:26 +00:00
|
|
|
vendorSha256 = "sha256-kJtJ2ut+yhgNoPIY5i3dKmQV0g+8RvcGnxCyay7wy2A=";
|
2021-02-21 02:25:38 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/lib/viaduct.ai/v1/ksops-exec/
|
|
|
|
mv $GOPATH/bin/kustomize-sops $out/lib/viaduct.ai/v1/ksops-exec/ksops-exec
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Tests are broken in a nix environment
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A Flexible Kustomize Plugin for SOPS Encrypted Resource";
|
|
|
|
longDescription = ''
|
|
|
|
KSOPS can be used to decrypt any Kubernetes resource, but is most commonly
|
|
|
|
used to decrypt encrypted Kubernetes Secrets and ConfigMaps.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/viaduct-ai/kustomize-sops";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ starcraft66 ];
|
|
|
|
};
|
|
|
|
}
|