about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/tgswitch/default.nix
blob: 5f669a6b9d8a3d66d1d64ab12115e87289331209 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ buildGoPackage, lib, fetchFromGitHub }:
buildGoPackage rec {
  pname = "tgswitch";
  version = "0.5.389";

  src = fetchFromGitHub {
    owner = "warrensbox";
    repo = "tgswitch";
    rev = version;
    sha256 = "sha256-6hErfI7LEJFgOoJR8IF9jTSBwqbQYeGiwdeJShqxVQ0=";
  };

  goPackagePath = "github.com/warrensbox/tgswitch";

  meta = with lib; {
    description = "A command line tool to switch between different versions of terragrunt";
    homepage = "https://github.com/warrensbox/tgswitch";
    license = licenses.mit;
    maintainers = with maintainers; [ psibi ];
  };
}