Merge pull request #120175 from 06kellyjac/deno

deno: add libiconv as a darwin dependency

Changed files
+2 -1
pkgs
development
web
+2 -1
pkgs/development/web/deno/default.nix
···
, rust
, rustPlatform
, installShellFiles
, libobjc
, Security
, CoreServices
···
# Install completions post-install
nativeBuildInputs = [ installShellFiles ];
-
buildInputs = lib.optionals stdenv.isDarwin [ libobjc Security CoreServices Metal Foundation ];
# The rusty_v8 package will try to download a `librusty_v8.a` release at build time to our read-only filesystem
# To avoid this we pre-download the file and place it in the locations it will require it in advance
···
, rust
, rustPlatform
, installShellFiles
+
, libiconv
, libobjc
, Security
, CoreServices
···
# Install completions post-install
nativeBuildInputs = [ installShellFiles ];
+
buildInputs = lib.optionals stdenv.isDarwin [ libiconv libobjc Security CoreServices Metal Foundation ];
# The rusty_v8 package will try to download a `librusty_v8.a` release at build time to our read-only filesystem
# To avoid this we pre-download the file and place it in the locations it will require it in advance