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

27 lines
583 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2019-11-12 07:21:18 +00:00
buildGoModule rec {
pname = "atlantis";
2020-07-08 17:39:49 +00:00
version = "0.14.0";
2019-11-12 07:21:18 +00:00
src = fetchFromGitHub {
owner = "runatlantis";
repo = "atlantis";
rev = "v${version}";
2020-07-08 17:39:49 +00:00
sha256 = "1g1bh1v3yd3dz80ckjrhspmsf78nw8hc907hh9jzbq62psqg4459";
2019-11-12 07:21:18 +00:00
};
vendorSha256 = null;
2019-11-12 07:21:18 +00:00
doCheck = false;
2019-11-12 07:21:18 +00:00
subPackages = [ "." ];
meta = with stdenv.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 ];
};
}