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

25 lines
593 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2019-11-12 07:21:18 +00:00
buildGoModule rec {
pname = "atlantis";
2020-06-06 02:28:22 +01:00
version = "0.13.0";
2019-11-12 07:21:18 +00:00
src = fetchFromGitHub {
owner = "runatlantis";
repo = "atlantis";
rev = "v${version}";
2020-06-06 02:28:22 +01:00
sha256 = "1ymixbix9sxhzmixqm9yjm9181aqnwnllqnswr0fq0nljw4018dn";
2019-11-12 07:21:18 +00:00
};
vendorSha256 = null;
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";
platforms = platforms.all;
license = licenses.asl20;
maintainers = with maintainers; [ jpotier ];
};
}