2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-11-12 08:21:18 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "atlantis";
|
2021-02-09 07:25:34 +01:00
|
|
|
version = "0.16.1";
|
2019-11-12 08:21:18 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "runatlantis";
|
|
|
|
repo = "atlantis";
|
|
|
|
rev = "v${version}";
|
2021-02-09 07:25:34 +01:00
|
|
|
sha256 = "sha256-D549pInoK8ispgcn8LYdix19Hp7wO6w2/d2Y1L/9Px8=";
|
2019-11-12 08:21:18 +01:00
|
|
|
};
|
|
|
|
|
2020-05-01 03:59:00 +02:00
|
|
|
vendorSha256 = null;
|
2019-11-12 08:21:18 +01:00
|
|
|
|
2020-08-04 02:26:27 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2019-11-12 08:21:18 +01:00
|
|
|
subPackages = [ "." ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-03-13 16:05:41 +01:00
|
|
|
homepage = "https://github.com/runatlantis/atlantis";
|
2019-11-12 08:21:18 +01:00
|
|
|
description = "Terraform Pull Request Automation";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ jpotier ];
|
|
|
|
};
|
2020-07-31 05:58:04 +02:00
|
|
|
}
|