terramate: 0.12.1 -> 0.13.0 (#391159)

authored by Austin Horstman and committed by GitHub 6b8cf07d a08f47e1

+5 -2
+5 -2
pkgs/by-name/te/terramate/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "terramate"; 9 - version = "0.12.1"; 9 + version = "0.13.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "terramate-io"; 13 13 repo = "terramate"; 14 14 rev = "v${version}"; 15 - hash = "sha256-e1eSKLBTPor7P78LOlZJDj31eB61x++9IF/Ebcpys+E="; 15 + hash = "sha256-9Bv4FlQzUX/mnSlv1qZqVER/JS0gr3HHmPV+axHKgJw="; 16 16 }; 17 17 18 18 vendorHash = "sha256-EdrELFQYQ5clUQJQdB/tlr9IhZz3+CF0jUKH7F6kCM8="; ··· 21 21 nativeBuildInputs = [ git ]; 22 22 23 23 ldflags = [ "-extldflags" "-static" ]; 24 + 25 + # Needed for the tests to pass on macOS 26 + __darwinAllowLocalNetworking = true; 24 27 25 28 # Disable failing E2E tests preventing the package from building 26 29 excludedPackages = [ "./e2etests/cloud" "./e2etests/core" ];