Merge pull request #176244 from aaronjheng/tgswitch

tgswitch: use buildGoModule
This commit is contained in:
Bobby Rong 2022-06-08 20:52:33 +08:00 committed by GitHub
commit b71b7090be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
{ buildGoPackage, lib, fetchFromGitHub }: { buildGoModule, lib, fetchFromGitHub }:
buildGoPackage rec { buildGoModule rec {
pname = "tgswitch"; pname = "tgswitch";
version = "0.5.389"; version = "0.5.389";
@ -10,7 +10,14 @@ buildGoPackage rec {
sha256 = "sha256-6hErfI7LEJFgOoJR8IF9jTSBwqbQYeGiwdeJShqxVQ0="; sha256 = "sha256-6hErfI7LEJFgOoJR8IF9jTSBwqbQYeGiwdeJShqxVQ0=";
}; };
goPackagePath = "github.com/warrensbox/tgswitch"; vendorSha256 = null;
ldflags = [ "-s" "-w" ];
# There are many modifications need to be done to make tests run. For example:
# 1. Network access
# 2. Operation on `/var/empty` not permitted on macOS
doCheck= false;
meta = with lib; { meta = with lib; {
description = "A command line tool to switch between different versions of terragrunt"; description = "A command line tool to switch between different versions of terragrunt";
@ -19,3 +26,4 @@ buildGoPackage rec {
maintainers = with maintainers; [ psibi ]; maintainers = with maintainers; [ psibi ];
}; };
} }