git-workspace: fix darwin build
This commit is contained in:
parent
d68e0569a0
commit
f00d022ebf
1 changed files with 3 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, Security
|
||||
, libiconv, Security
|
||||
, pkg-config, openssl
|
||||
}:
|
||||
|
||||
|
@ -19,7 +19,8 @@ rustPlatform.buildRustPackage rec {
|
|||
cargoSha256 = "sha256-lvxEYjVMJoAFFRG5iVfGwxUeJObIxfEaWokk69l++nI=";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
|
||||
buildInputs = [ openssl ]
|
||||
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Sync personal and work git repositories from multiple providers";
|
||||
|
|
Loading…
Reference in a new issue