nixpkgs/pkgs/applications/networking/cluster/atmos/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.2 KiB
Nix
Raw Normal View History

2022-09-07 16:16:09 +02:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "atmos";
2024-04-03 03:44:33 +02:00
version = "1.67.0";
2022-09-07 16:16:09 +02:00
src = fetchFromGitHub {
owner = "cloudposse";
repo = pname;
rev = "v${version}";
2024-04-03 03:44:33 +02:00
sha256 = "sha256-bnecb0SucLcNrrQ0PAN31Z4nNV+0wrrzMLn7OyMOS5w=";
2022-09-07 16:16:09 +02:00
};
2024-04-03 03:44:33 +02:00
vendorHash = "sha256-oNAEe7g9kYZ4kolmVQat6l/tag0Bus7nJEfnzCrUtjA=";
2022-09-07 16:16:09 +02:00
ldflags = [ "-s" "-w" "-X github.com/cloudposse/atmos/cmd.Version=v${version}" ];
preCheck = ''
# Remove tests that depend on a network connection.
2024-01-11 00:05:21 +01:00
rm -f \
pkg/vender/component_vendor_test.go \
pkg/atlantis/atlantis_generate_repo_config_test.go \
pkg/describe/describe_affected_test.go
2022-09-07 16:16:09 +02:00
'';
doCheck = true;
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
$out/bin/atmos version | grep "v${version}"
runHook postInstallCheck
'';
meta = with lib; {
homepage = "https://atmos.tools";
changelog = "https://github.com/cloudposse/atmos/releases/tag/v${version}";
description = "Universal Tool for DevOps and Cloud Automation (works with terraform, helm, helmfile, etc)";
mainProgram = "atmos";
2022-09-07 16:16:09 +02:00
license = licenses.asl20;
maintainers = with maintainers; [ rb ];
};
}