tfswitch: init at 0.12.1119

Add tfswitch which allows to easily manage different terraform
versions for different projects.
This commit is contained in:
Sibi Prabakaran 2021-07-05 22:52:17 +05:30
parent a00a31df2f
commit 8feca53ba9
No known key found for this signature in database
GPG Key ID: D19E3E0EBB557613
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ buildGoModule, lib, fetchFromGitHub }:
buildGoModule rec {
pname = "tfswitch";
version = "0.12.1119";
src = fetchFromGitHub {
owner = "warrensbox";
repo = "terraform-switcher";
rev = version;
sha256 = "1xsmr4hnmdg2il3rp39cyhv55ha4qcilcsr00iiija3bzxsm4rya";
};
vendorSha256 = "0mpm4m07v8w02g95cnj73m5gvd118id4ag2pym8d9r2svkyz5n70";
# Disable tests since it requires network access and relies on the
# presence of release.hashicorp.com
doCheck = false;
runVend = true;
postInstall = ''
# The binary is named tfswitch
mv $out/bin/terraform-switcher $out/bin/tfswitch
'';
meta = with lib; {
description = "A command line tool to switch between different versions of terraform";
homepage = "https://github.com/warrensbox/terraform-switcher";
license = licenses.mit;
maintainers = with maintainers; [ psibi ];
};
}

View File

@ -31513,6 +31513,8 @@ in
terranix = callPackage ../applications/networking/cluster/terranix {};
tfswitch = callPackage ../applications/networking/cluster/tfswitch {};
tilt = callPackage ../applications/networking/cluster/tilt {};
timeular = callPackage ../applications/office/timeular {};