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