Merge pull request #98370 from bryanasdev000/package-popeye
popeye: init at 0.8.10
This commit is contained in:
commit
3eccc3f833
|
@ -0,0 +1,34 @@
|
|||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "popeye";
|
||||
version = "0.8.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
rev = "v${version}";
|
||||
owner = "derailed";
|
||||
repo = "popeye";
|
||||
sha256 = "1cx39xipvvhb12nhvg7kfssnqafajni662b070ynlw8p870bj0sn";
|
||||
};
|
||||
|
||||
buildFlagsArray = ''
|
||||
-ldflags=
|
||||
-s -w
|
||||
-X github.com/derailed/popeye/cmd.version=${version}
|
||||
-X github.com/derailed/popeye/cmd.commit=b7a876eafd4f7ec5683808d8d6880c41c805056a
|
||||
-X github.com/derailed/popeye/cmd.date=2020-08-25T23:02:30Z
|
||||
'';
|
||||
|
||||
vendorSha256 = "0b2bawc9wnqwgvrv614rq5y4ns9di65zqcbb199y2ijpsaw5d9a7";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -21632,6 +21632,8 @@ in
|
|||
|
||||
k9s = callPackage ../applications/networking/cluster/k9s { };
|
||||
|
||||
popeye = callPackage ../applications/networking/cluster/popeye { };
|
||||
|
||||
fluxctl = callPackage ../applications/networking/cluster/fluxctl { };
|
||||
|
||||
linkerd = callPackage ../applications/networking/cluster/linkerd { };
|
||||
|
|
Loading…
Reference in New Issue