exa: remove darwin from input
This commit is contained in:
parent
a1cfe2a07e
commit
a50abe418f
@ -1,5 +1,5 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, rustPlatform, cmake, perl, pkg-config, zlib
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, rustPlatform, cmake, perl, pkg-config, zlib
|
||||||
, darwin, libiconv, installShellFiles
|
, Security, libiconv, installShellFiles
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with rustPlatform;
|
with rustPlatform;
|
||||||
@ -28,9 +28,7 @@ buildRustPackage rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ cmake pkg-config perl installShellFiles ];
|
nativeBuildInputs = [ cmake pkg-config perl installShellFiles ];
|
||||||
buildInputs = [ zlib ]
|
buildInputs = [ zlib ]
|
||||||
++ lib.optionals stdenv.isDarwin [
|
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
|
||||||
libiconv darwin.apple_sdk.frameworks.Security ]
|
|
||||||
;
|
|
||||||
|
|
||||||
outputs = [ "out" "man" ];
|
outputs = [ "out" "man" ];
|
||||||
|
|
||||||
|
@ -3993,7 +3993,9 @@ in
|
|||||||
|
|
||||||
eva = callPackage ../tools/misc/eva { };
|
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 {
|
exempi = callPackage ../development/libraries/exempi {
|
||||||
stdenv = if stdenv.isi686 then gcc6Stdenv else stdenv;
|
stdenv = if stdenv.isi686 then gcc6Stdenv else stdenv;
|
||||||
|
Loading…
Reference in New Issue
Block a user