diodon: init at 1.13.0 (#369078)
[NixPkgs.git] / pkgs / by-name / at / atlantis / package.nix
blob735d5871b6d0a61561b359fcd923b339140e4d39
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "atlantis";
9   version = "0.32.0";
11   src = fetchFromGitHub {
12     owner = "runatlantis";
13     repo = "atlantis";
14     rev = "v${version}";
15     hash = "sha256-7D7msKDnHym3uiMJur2kCRf6MurwkMEKI+aYcwqOVX0=";
16   };
17   ldflags = [
18     "-X=main.version=${version}"
19     "-X=main.date=1970-01-01T00:00:00Z"
20   ];
22   vendorHash = "sha256-wPsEE6sR1GDD3Npdcf/JmeZc451+x9UBE8+DwXkj/qE=";
24   subPackages = [ "." ];
26   doInstallCheck = true;
27   installCheckPhase = ''
28     $out/bin/atlantis version | grep ${version} > /dev/null
29   '';
31   meta = with lib; {
32     homepage = "https://github.com/runatlantis/atlantis";
33     description = "Terraform Pull Request Automation";
34     mainProgram = "atlantis";
35     license = licenses.asl20;
36     maintainers = with maintainers; [ jpotier ];
37   };