anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / networking / cluster / tubekit / default.nix
blob1e4895118be15a10248117bb5421b457a899cea2
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "tubekit";
8   version = "5";
10   src = fetchFromGitHub {
11     owner = "reconquest";
12     repo = "tubekit";
13     rev = "refs/tags/v${version}";
14     hash = "sha256-fUe5bMFF569A9Xdx3bfQH2DzbQDRfZ+ewlDL+gK2gWw=";
15   };
17   vendorHash = "sha256-qAmkUV5l5g8/w8ZTYFGYvd9I8NUk8rMYjutenHvTRnw=";
19   meta = with lib; {
20     description = "Kubectl alternative with quick context switching";
21     mainProgram = "tubectl";
22     homepage = "https://github.com/reconquest/tubekit";
23     license = licenses.mit;
24     platforms = platforms.linux ++ platforms.darwin;
25     maintainers = with maintainers; [ farcaller ];
26   };