Skip to content

Commit

Permalink
atmos: 1.16.0 -> 1.53.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JTarasovic committed Jan 11, 2024
1 parent 32afa5e commit ed823ac
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions pkgs/applications/networking/cluster/atmos/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,25 @@

buildGoModule rec {
pname = "atmos";
version = "1.16.0";
version = "1.53.0";

src = fetchFromGitHub {
owner = "cloudposse";
repo = pname;
rev = "v${version}";
sha256 = "sha256-6NUuKU8KQBfHE6fcN3a9lBcUk7p5I9SuY9g+qJxGXmU=";
sha256 = "sha256-2T5LCtycTBnJntcKQoJqNwTczWR8bC1SBAqjMN+3Qd4=";
};

vendorHash = "sha256-vZwADD7fi9ZvJby9Ijdeueid8jRfUyyj6Nu4kgkO5Wo=";
vendorHash = "sha256-piK9IVwGAidDhBNAEnu9hD7Ng67ZKxZMcNqgOXLCkq0=";

ldflags = [ "-s" "-w" "-X github.com/cloudposse/atmos/cmd.Version=v${version}" ];

preCheck = ''
# Remove tests that depend on a network connection.
rm -f pkg/vender/component_vendor_test.go
rm -f \
pkg/vender/component_vendor_test.go \
pkg/atlantis/atlantis_generate_repo_config_test.go \
pkg/describe/describe_affected_test.go
'';

doCheck = true;
Expand All @@ -37,4 +40,3 @@ buildGoModule rec {
maintainers = with maintainers; [ rb ];
};
}

0 comments on commit ed823ac

Please sign in to comment.