about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster
diff options
context:
space:
mode:
authorMartin Potier <martin.potier@marvid.fr>2019-11-12 09:21:18 +0200
committerJon <jonringer@users.noreply.github.com>2019-11-13 01:44:53 -0800
commitca0c25f18a4ae9bd089331644e3c438fcebe27ce (patch)
tree54fb7261191962cf34759320c4b8f092aa38e61e /pkgs/applications/networking/cluster
parent967d29418ba410d63414eb394e33472b0d22dfcc (diff)
downloadnixlib-ca0c25f18a4ae9bd089331644e3c438fcebe27ce.tar
nixlib-ca0c25f18a4ae9bd089331644e3c438fcebe27ce.tar.gz
nixlib-ca0c25f18a4ae9bd089331644e3c438fcebe27ce.tar.bz2
nixlib-ca0c25f18a4ae9bd089331644e3c438fcebe27ce.tar.lz
nixlib-ca0c25f18a4ae9bd089331644e3c438fcebe27ce.tar.xz
nixlib-ca0c25f18a4ae9bd089331644e3c438fcebe27ce.tar.zst
nixlib-ca0c25f18a4ae9bd089331644e3c438fcebe27ce.zip
atlantis: init at 0.10.1
Diffstat (limited to 'pkgs/applications/networking/cluster')
-rw-r--r--pkgs/applications/networking/cluster/atlantis/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/atlantis/default.nix b/pkgs/applications/networking/cluster/atlantis/default.nix
new file mode 100644
index 000000000000..67e91870f1a1
--- /dev/null
+++ b/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 ];
+  };
+}