tiny: fix build on darwin

gstqt5
Anton Parkhomenko 2020-07-05 13:54:21 +03:00
parent 969e35423c
commit bb9cd254db
2 changed files with 5 additions and 2 deletions

View File

@ -6,6 +6,7 @@
, pkg-config
, dbus
, openssl
, Foundation
}:
rustPlatform.buildRustPackage rec {
@ -24,7 +25,7 @@ rustPlatform.buildRustPackage rec {
RUSTC_BOOTSTRAP = 1;
nativeBuildInputs = lib.optional stdenv.isLinux pkg-config;
buildInputs = lib.optionals stdenv.isLinux [ dbus openssl ];
buildInputs = lib.optionals stdenv.isLinux [ dbus openssl ] ++ lib.optional stdenv.isDarwin Foundation;
meta = with lib; {
description = "A console IRC client";

View File

@ -22601,7 +22601,9 @@ in
tint2 = callPackage ../applications/misc/tint2 { };
tiny = callPackage ../applications/networking/irc/tiny { };
tiny = callPackage ../applications/networking/irc/tiny {
inherit (darwin.apple_sdk.frameworks) Foundation;
};
tipp10 = qt5.callPackage ../applications/misc/tipp10 { };