biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rakkess / default.nix
blob6b101e0b890cac1c708e5df04efb5e82893bde77
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "rakkess";
5   version = "0.5.1";
7   src = fetchFromGitHub {
8     owner = "corneliusweig";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-igovWWk8GfNmOS/NbZWfv9kox6QLNIbM09jdvA/lL3A=";
12   };
13   vendorHash = "sha256-lVxJ4wFBhHc8JVpkmqphLYPE9Z8Cr6o+aAHvC1naqyE=";
15   ldflags = [ "-s" "-w" "-X github.com/corneliusweig/rakkess/internal/version.version=v${version}" ];
17   meta = with lib; {
18     homepage = "https://github.com/corneliusweig/rakkess";
19     changelog = "https://github.com/corneliusweig/rakkess/releases/tag/v${version}";
20     description = "Review Access - kubectl plugin to show an access matrix for k8s server resources";
21     mainProgram = "rakkess";
22     longDescription = ''
23       Have you ever wondered what access rights you have on a provided
24       kubernetes cluster? For single resources you can use
25       `kubectl auth can-i list deployments`, but maybe you are looking for a
26       complete overview? This is what rakkess is for. It lists access rights for
27       the current user and all server resources, similar to
28       `kubectl auth can-i --list`.
29     '';
30     license = licenses.asl20;
31     maintainers = with maintainers; [ jk ];
32   };