Merge pull request #110493 from hackworthltd/nix-big-sur

nix: add Security to build inputs.

Changed files
+3
pkgs
tools
package-management
top-level
+2
pkgs/tools/package-management/nix/default.nix
···
, stateDir ? "/nix/var"
, confDir ? "/etc"
, boehmgc
+
, Security
}:
let
···
[ curl openssl sqlite xz bzip2 nlohmann_json
brotli boost editline
]
+
++ lib.optionals stdenv.isDarwin [ Security ]
++ lib.optional (stdenv.isLinux || stdenv.isDarwin) libsodium
++ lib.optionals is24 [ libarchive gmock ]
++ lib.optional withLibseccomp libseccomp
+1
pkgs/top-level/all-packages.nix
···
storeDir = config.nix.storeDir or "/nix/store";
stateDir = config.nix.stateDir or "/nix/var";
boehmgc = boehmgc.override { enableLargeConfig = true; };
+
inherit (darwin.apple_sdk.frameworks) Security;
nix
nixStable