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

26 lines
641 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2019-11-12 07:21:18 +00:00
buildGoModule rec {
pname = "atlantis";
2020-05-02 02:11:25 +00:00
version = "0.12.0";
2019-11-12 07:21:18 +00:00
src = fetchFromGitHub {
owner = "runatlantis";
repo = "atlantis";
rev = "v${version}";
2020-05-02 02:11:25 +00:00
sha256 = "16zz4xwpqipdmszbz93xxw31hbh7s8pfa9dm64ybyni7wc4lvdy6";
2019-11-12 07:21:18 +00:00
};
2020-05-02 02:11:25 +00:00
modSha256 = "18f7cf61yn5jkji5a4v6xw6c7xl40nj32n5w34xmcmszzf64cwkn";
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 ];
};
}