summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Lee <benjamin@computer.surgery>2023-04-03 11:00:53 -0700
committerEmery Hemingway <ehmry@posteo.net>2023-04-03 18:50:57 +0000
commit6cf5d549fe1141250cf4df7ab3f3697ea984b4dc (patch)
tree3752d35cefc30df9cb6c817663d992c7e17625b6
parentMerge pull request #224463 from viraptor/socklog-darwin (diff)
downloadnixpkgs-6cf5d549fe1141250cf4df7ab3f3697ea984b4dc.tar.gz
nimble-unwrapped: Add missing Security framework buildInput
-rw-r--r--pkgs/development/compilers/nim/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/compilers/nim/default.nix b/pkgs/development/compilers/nim/default.nix
index 5518eb64bbd8..c9cdfc6bdf48 100644
--- a/pkgs/development/compilers/nim/default.nix
+++ b/pkgs/development/compilers/nim/default.nix
@@ -165,7 +165,8 @@ in {
};
depsBuildBuild = [ nim-unwrapped ];
- buildInputs = [ openssl ];
+ buildInputs = [ openssl ]
+ ++ lib.optional stdenv.isDarwin Security;
nimFlags = [ "--cpu:${nimHost.cpu}" "--os:${nimHost.os}" "-d:release" ];