2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-09-21 05:58:36 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "popeye";
|
2021-08-17 15:36:10 +01:00
|
|
|
version = "0.9.7";
|
2020-09-21 05:58:36 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
rev = "v${version}";
|
|
|
|
owner = "derailed";
|
|
|
|
repo = "popeye";
|
2021-08-17 15:36:10 +01:00
|
|
|
sha256 = "sha256-oft1zLLd5TP8S9GMjp5kYaoPoOYnbhJwL2wBerkhp+c=";
|
2020-09-21 05:58:36 +01:00
|
|
|
};
|
|
|
|
|
2021-08-23 05:55:51 +01:00
|
|
|
ldflags = [
|
2021-08-26 07:45:51 +01:00
|
|
|
"-s" "-w"
|
|
|
|
"-X github.com/derailed/popeye/cmd.version=${version}"
|
|
|
|
"-X github.com/derailed/popeye/cmd.commit=${version}"
|
2021-08-23 05:55:51 +01:00
|
|
|
];
|
2020-09-21 05:58:36 +01:00
|
|
|
|
2021-08-17 15:36:10 +01:00
|
|
|
vendorSha256 = "sha256-vUUDLMicop5QzZmAHi5qrc0hx8oV2xWNFHvCWioLhl8=";
|
2020-09-21 05:58:36 +01:00
|
|
|
|
2021-05-12 02:40:54 +01:00
|
|
|
doCheck = true;
|
2020-09-21 05:58:36 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-09-21 05:58:36 +01:00
|
|
|
description = "A Kubernetes cluster resource sanitizer";
|
|
|
|
homepage = "https://github.com/derailed/popeye";
|
|
|
|
changelog = "https://github.com/derailed/popeye/releases/tag/v${version}";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.bryanasdev000 ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|