tiny: fix build on darwin
This commit is contained in:
parent
969e35423c
commit
bb9cd254db
@ -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";
|
||||
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user