Skip to content

Commit

Permalink
atlantis: init at 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinPotier committed Nov 13, 2019
1 parent 2041381 commit 1846286
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/applications/networking/cluster/atlantis/default.nix
@@ -0,0 +1,25 @@
{ stdenv, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
pname = "atlantis";
version = "0.10.1";

src = fetchFromGitHub {
owner = "runatlantis";
repo = "atlantis";
rev = "v${version}";
sha256 = "08k2dgz6rph68647ah1rdp7hqa5h1ar4gdy7vdjy5kn7gz21gmri";
};

modSha256 = "1i4s3xcq2qc3zy00wk2l77935ilm6n5k1msilmdnj0061ia4860y";

subPackages = [ "." ];

meta = with stdenv.lib; {
homepage = https://github.com/runatlantis/atlantis;
description = "Terraform Pull Request Automation";
platforms = platforms.all;
license = licenses.asl20;
maintainers = with maintainers; [ jpotier ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -24238,6 +24238,8 @@ in

ataripp = callPackage ../misc/emulators/atari++ { };

atlantis = callPackage ../applications/networking/cluster/atlantis { };

auctex = callPackage ../tools/typesetting/tex/auctex { };

areca = callPackage ../applications/backup/areca { };
Expand Down

0 comments on commit 1846286

Please sign in to comment.