mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
31 lines
862 B
Nix
31 lines
862 B
Nix
{ buildGoModule, lib, fetchFromGitHub }:
|
|
buildGoModule rec {
|
|
pname = "tfswitch";
|
|
version = "0.13.1218";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "warrensbox";
|
|
repo = "terraform-switcher";
|
|
rev = version;
|
|
sha256 = "sha256-RJdbNXO+6TqFLapWiZ1UeXGS5522ykQvhhNDEHPr8xE=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-Xqgki072Iy+snRriPVJ9oaDNJ/LiKL+AuU+eVw0zlDU=";
|
|
|
|
# Disable tests since it requires network access and relies on the
|
|
# presence of release.hashicorp.com
|
|
doCheck = false;
|
|
|
|
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 ];
|
|
};
|
|
}
|