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-05-21 03:14:39 +00:00
version = "5.16.3";
2022-03-24 08:47:47 +00:00
src = fetchFromGitHub {
owner = "FairwindsOps";
repo = "pluto";
rev = "v${version}";
2023-05-21 03:14:39 +00:00
sha256 = "sha256-TlXwjgk+sT5lvswbDKjun0PhkfqDfk1IzGZ9NCMdw9s=";
2022-03-24 08:47:47 +00:00
};
2023-05-21 03:14:39 +00:00
vendorHash = "sha256-ahneuZExefFKGYDxa+F8IhKPDjw8+kdZ5Hj+k1BDxcU=";
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 ];
};
}