2020-03-27 07:33:21 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-11-17 07:33:55 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "kubeseal";
|
2021-05-11 07:03:36 +01:00
|
|
|
version = "0.16.0";
|
2019-11-17 07:33:55 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bitnami-labs";
|
|
|
|
repo = "sealed-secrets";
|
|
|
|
rev = "v${version}";
|
2021-05-11 07:03:36 +01:00
|
|
|
sha256 = "sha256-+9yOBrq34VCy1yAkSh1iHbgtckuz2FcHokH/Cb/Heus=";
|
2019-11-17 07:33:55 +00:00
|
|
|
};
|
|
|
|
|
2020-05-01 02:59:00 +01:00
|
|
|
vendorSha256 = null;
|
2019-11-17 07:33:55 +00:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2019-11-17 07:33:55 +00:00
|
|
|
subPackages = [ "cmd/kubeseal" ];
|
|
|
|
|
2021-08-26 07:45:51 +01:00
|
|
|
ldflags = [ "-s" "-w" "-X main.VERSION=${version}" ];
|
2020-05-19 10:20:00 +01:00
|
|
|
|
2020-03-27 07:33:21 +00:00
|
|
|
meta = with lib; {
|
2019-11-17 07:33:55 +00:00
|
|
|
description = "A Kubernetes controller and tool for one-way encrypted Secrets";
|
|
|
|
homepage = "https://github.com/bitnami-labs/sealed-secrets";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ groodt ];
|
|
|
|
};
|
2020-07-31 03:45:00 +01:00
|
|
|
}
|