atlantis: fix build on darwin
This commit is contained in:
parent
64b130dd88
commit
a963023e7b
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "atlantis";
|
pname = "atlantis";
|
||||||
|
@ -15,6 +15,8 @@ buildGoModule rec {
|
||||||
|
|
||||||
subPackages = [ "." ];
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://github.com/runatlantis/atlantis";
|
homepage = "https://github.com/runatlantis/atlantis";
|
||||||
description = "Terraform Pull Request Automation";
|
description = "Terraform Pull Request Automation";
|
||||||
|
|
|
@ -24960,7 +24960,9 @@ in
|
||||||
|
|
||||||
ataripp = callPackage ../misc/emulators/atari++ { };
|
ataripp = callPackage ../misc/emulators/atari++ { };
|
||||||
|
|
||||||
atlantis = callPackage ../applications/networking/cluster/atlantis { };
|
atlantis = callPackage ../applications/networking/cluster/atlantis {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
auctex = callPackage ../tools/typesetting/tex/auctex { };
|
auctex = callPackage ../tools/typesetting/tex/auctex { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue