exa: remove darwin from input

master
Sandro Jäckel 2021-02-12 05:18:07 +01:00
parent a1cfe2a07e
commit a50abe418f
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, fetchpatch, rustPlatform, cmake, perl, pkg-config, zlib
, darwin, libiconv, installShellFiles
, Security, libiconv, installShellFiles
}:
with rustPlatform;
@ -28,9 +28,7 @@ buildRustPackage rec {
nativeBuildInputs = [ cmake pkg-config perl installShellFiles ];
buildInputs = [ zlib ]
++ lib.optionals stdenv.isDarwin [
libiconv darwin.apple_sdk.frameworks.Security ]
;
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
outputs = [ "out" "man" ];

View File

@ -3993,7 +3993,9 @@ in
eva = callPackage ../tools/misc/eva { };
exa = callPackage ../tools/misc/exa { };
exa = callPackage ../tools/misc/exa {
inherit (darwin.apple_sdk.frameworks) Security;
};
exempi = callPackage ../development/libraries/exempi {
stdenv = if stdenv.isi686 then gcc6Stdenv else stdenv;