Deployment and lifecycle management for Nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add systemconfiguration for darwin

+4 -1
+4 -1
flake.nix
··· 91 91 CARGO_BUILD_TARGET = rustTarget; 92 92 CARGO_BUILD_RUSTFLAGS = "-C target-feature=+crt-static"; 93 93 94 - buildInputs = [ ] ++ pkgs.lib.optionals pkgs.stdenv.isDarwin [ pkgs.libiconv ]; 94 + buildInputs = pkgs.lib.optionals pkgs.stdenv.isDarwin [ 95 + pkgs.libiconv 96 + pkgs.darwin.apple_sdk.frameworks.SystemConfiguration 97 + ]; 95 98 }; 96 99 }; 97 100 };