mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
22 lines
582 B
Nix
22 lines
582 B
Nix
{ buildGoPackage, lib, fetchFromGitHub }:
|
|
buildGoPackage rec {
|
|
pname = "tgswitch";
|
|
version = "0.5.382";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "warrensbox";
|
|
repo = "tgswitch";
|
|
rev = version;
|
|
sha256 = "sha256-DbPf1o1XlXLpuYSrNMRwHRqi/urQhSfzPW5BPIvZC/Y=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|