mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
atlantis: init at 0.10.1
This commit is contained in:
parent
967d29418b
commit
ca0c25f18a
2 changed files with 27 additions and 0 deletions
25
pkgs/applications/networking/cluster/atlantis/default.nix
Normal file
25
pkgs/applications/networking/cluster/atlantis/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -24254,6 +24254,8 @@ in
|
|||
|
||||
ataripp = callPackage ../misc/emulators/atari++ { };
|
||||
|
||||
atlantis = callPackage ../applications/networking/cluster/atlantis { };
|
||||
|
||||
auctex = callPackage ../tools/typesetting/tex/auctex { };
|
||||
|
||||
areca = callPackage ../applications/backup/areca { };
|
||||
|
|
Loading…
Reference in a new issue