about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/cluster/tubekit/default.nix
blob: afcef293c1d86b40b445ba01aab100fdfcefa75d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "tubekit";
  version = "5";

  src = fetchFromGitHub {
    owner = "reconquest";
    repo = "tubekit";
    rev = "refs/tags/v${version}";
    hash = "sha256-fUe5bMFF569A9Xdx3bfQH2DzbQDRfZ+ewlDL+gK2gWw=";
  };

  vendorHash = "sha256-qAmkUV5l5g8/w8ZTYFGYvd9I8NUk8rMYjutenHvTRnw=";

  meta = with lib; {
    description = "Kubectl alternative with quick context switching";
    homepage = "https://github.com/reconquest/tubekit";
    license = licenses.mit;
    platforms = platforms.linux ++ platforms.darwin;
    maintainers = with maintainers; [ farcaller ];
  };
}