Merge pull request #146501 from psibi/tgswitch

authored by Sandro and committed by GitHub a09bdaae 45917cf6

+23
+21
pkgs/applications/networking/cluster/tgswitch/default.nix
··· 1 + { buildGoPackage, lib, fetchFromGitHub }: 2 + buildGoPackage rec { 3 + pname = "tgswitch"; 4 + version = "0.5.378"; 5 + 6 + src = fetchFromGitHub { 7 + owner = "warrensbox"; 8 + repo = "tgswitch"; 9 + rev = version; 10 + sha256 = "0q2aqh75acbpkmvkws0rl3d5dzq3sisy637c0x6cnc88h34g3n3i"; 11 + }; 12 + 13 + goPackagePath = "github.com/warrensbox/tgswitch"; 14 + 15 + meta = with lib; { 16 + description = "A command line tool to switch between different versions of terragrunt"; 17 + homepage = "https://github.com/warrensbox/tgswitch"; 18 + license = licenses.mit; 19 + maintainers = with maintainers; [ psibi ]; 20 + }; 21 + }
+2
pkgs/top-level/all-packages.nix
··· 33049 33049 33050 33050 tfswitch = callPackage ../applications/networking/cluster/tfswitch {}; 33051 33051 33052 + tgswitch = callPackage ../applications/networking/cluster/tgswitch {}; 33053 + 33052 33054 tilt = callPackage ../applications/networking/cluster/tilt {}; 33053 33055 33054 33056 timeular = callPackage ../applications/office/timeular {};