nixpkgs/pkgs/applications/networking/cluster/pluto/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
646 B
Nix
Raw Normal View History

2022-03-24 08:47:47 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "pluto";
2023-02-12 09:11:41 +00:00
version = "5.13.3";
2022-03-24 08:47:47 +00:00
src = fetchFromGitHub {
owner = "FairwindsOps";
repo = "pluto";
rev = "v${version}";
2023-02-12 09:11:41 +00:00
sha256 = "sha256-6kbfsqhALf7LFl0GS4VAMTVDFKP+CaEr6IPfpTZ33Fo=";
2022-03-24 08:47:47 +00:00
};
2023-02-12 09:11:41 +00:00
vendorHash = "sha256-lXW1yHrGLwZdhfkMLeu7zm0w2HxXk1DW+QEY+rfGZpE=";
2022-03-24 08:47:47 +00:00
ldflags = [
"-w" "-s"
"-X main.version=v${version}"
];
meta = with lib; {
homepage = "https://github.com/FairwindsOps/pluto";
description = "Find deprecated Kubernetes apiVersions";
license = licenses.asl20;
maintainers = with maintainers; [ peterromfeldhk ];
};
}