diff options
| author | Benjamin Lee <benjamin@computer.surgery> | 2023-04-03 11:00:53 -0700 |
|---|---|---|
| committer | Emery Hemingway <ehmry@posteo.net> | 2023-04-03 18:50:57 +0000 |
| commit | 6cf5d549fe1141250cf4df7ab3f3697ea984b4dc (patch) | |
| tree | 3752d35cefc30df9cb6c817663d992c7e17625b6 | |
| parent | Merge pull request #224463 from viraptor/socklog-darwin (diff) | |
| download | nixpkgs-6cf5d549fe1141250cf4df7ab3f3697ea984b4dc.tar.gz | |
nimble-unwrapped: Add missing Security framework buildInput
| -rw-r--r-- | pkgs/development/compilers/nim/default.nix | 3 |
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" ]; |
