ffsend: don't require openssl on darwin

The current version of ffsend no longer requires `openssl` on macOS.
This commit is contained in:
Lily Ballard 2020-05-20 16:17:59 -07:00
parent 4a302d1b9a
commit 2915242583

View File

@ -28,9 +28,9 @@ buildRustPackage rec {
cargoSha256 = "0svmbay9waaq9fpc8lg1nys6l35xsjvkri5v1frlgxida5dzghpq"; cargoSha256 = "0svmbay9waaq9fpc8lg1nys6l35xsjvkri5v1frlgxida5dzghpq";
nativeBuildInputs = [ cmake pkgconfig installShellFiles ]; nativeBuildInputs = [ cmake pkgconfig installShellFiles ];
buildInputs = [ openssl ] buildInputs =
++ stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ CoreFoundation CoreServices Security AppKit ]) if stdenv.isDarwin then (with darwin.apple_sdk.frameworks; [ CoreFoundation CoreServices Security AppKit ])
; else [ openssl ];
preBuild = stdenv.lib.optionalString (x11Support && usesX11) ( preBuild = stdenv.lib.optionalString (x11Support && usesX11) (
if preferXsel && xsel != null then '' if preferXsel && xsel != null then ''