Merge pull request #159937 from happysalada/starship_fix_darwin

This commit is contained in:
Ben Siraphob
2022-02-14 12:08:44 -06:00
committed by GitHub
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -8,6 +8,7 @@
, libiconv
, nixosTests
, Security
, Foundation
}:
rustPlatform.buildRustPackage rec {
@@ -24,7 +25,7 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ installShellFiles ] ++ lib.optionals stdenv.isLinux [ pkg-config ];
buildInputs = lib.optionals stdenv.isLinux [ openssl ]
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
++ lib.optionals stdenv.isDarwin [ libiconv Security Foundation ];
postInstall = ''
for shell in bash fish zsh; do
+1 -1
View File
@@ -24029,7 +24029,7 @@ with pkgs;
stdmanpages = callPackage ../data/documentation/std-man-pages { };
starship = callPackage ../tools/misc/starship {
inherit (darwin.apple_sdk.frameworks) Security;
inherit (darwin.apple_sdk.frameworks) Security Foundation;
};
stig = callPackage ../applications/networking/p2p/stig { };