From 0874b00cd83335f760b9f6dac9b7f5c7b44a3d57 Mon Sep 17 00:00:00 2001 From: Andriy Mykhaylyk Date: Thu, 7 Jul 2022 17:17:09 +0200 Subject: [PATCH] tgswitch: 0.5.389 -> 0.6.0 (#179718) Co-authored-by: Sandro --- .../networking/cluster/tgswitch/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/cluster/tgswitch/default.nix b/pkgs/applications/networking/cluster/tgswitch/default.nix index 44c16bd4668d..31df14cebeda 100644 --- a/pkgs/applications/networking/cluster/tgswitch/default.nix +++ b/pkgs/applications/networking/cluster/tgswitch/default.nix @@ -1,26 +1,26 @@ { buildGoModule, lib, fetchFromGitHub }: buildGoModule rec { pname = "tgswitch"; - version = "0.5.389"; + version = "0.6.0"; src = fetchFromGitHub { owner = "warrensbox"; repo = "tgswitch"; rev = version; - sha256 = "sha256-6hErfI7LEJFgOoJR8IF9jTSBwqbQYeGiwdeJShqxVQ0="; + sha256 = "sha256-Q3Cef3B7hfVHLvW8Rx6IdH9g/3luDhpUMZ8TXVpb8gQ="; }; - vendorSha256 = null; + vendorSha256 = "sha256-PlTdbA8Z2I2SWoG7oYG87VQfczx9zP1SCJx70UWOEog="; 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; + doCheck = false; meta = with lib; { - description = "A command line tool to switch between different versions of terragrunt"; + description = "Command line tool to switch between different versions of terragrunt"; homepage = "https://github.com/warrensbox/tgswitch"; license = licenses.mit; maintainers = with maintainers; [ psibi ];