3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/cluster/atlantis/default.nix

28 lines
719 B
Nix
Raw Normal View History

2020-03-21 09:26:00 +00:00
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
2019-11-12 07:21:18 +00:00
buildGoModule rec {
pname = "atlantis";
2020-03-13 15:05:41 +00:00
version = "0.11.1";
2019-11-12 07:21:18 +00:00
src = fetchFromGitHub {
owner = "runatlantis";
repo = "atlantis";
rev = "v${version}";
2020-03-13 15:05:41 +00:00
sha256 = "1ylk6n13ln6yaq4nc4n7fm00wfiyqi2x33sca5avzsvd1b387kk6";
2019-11-12 07:21:18 +00:00
};
2020-03-13 15:05:41 +00:00
modSha256 = "1bhplk3p780llpj9l0fwcyli74879968d6j582mvjwvf2winbqzq";
2019-11-12 07:21:18 +00:00
subPackages = [ "." ];
2020-03-21 09:26:00 +00:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
2019-11-12 07:21:18 +00:00
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";
platforms = platforms.all;
license = licenses.asl20;
maintainers = with maintainers; [ jpotier ];
};
}