mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
exa: remove darwin from input
This commit is contained in:
parent
a1cfe2a07e
commit
a50abe418f
2 changed files with 5 additions and 5 deletions
|
@ -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" ];
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue