tiny: fix build on darwin
This commit is contained in:
parent
969e35423c
commit
bb9cd254db
@ -6,6 +6,7 @@
|
|||||||
, pkg-config
|
, pkg-config
|
||||||
, dbus
|
, dbus
|
||||||
, openssl
|
, openssl
|
||||||
|
, Foundation
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
@ -24,7 +25,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
RUSTC_BOOTSTRAP = 1;
|
RUSTC_BOOTSTRAP = 1;
|
||||||
|
|
||||||
nativeBuildInputs = lib.optional stdenv.isLinux pkg-config;
|
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; {
|
meta = with lib; {
|
||||||
description = "A console IRC client";
|
description = "A console IRC client";
|
||||||
|
@ -22601,7 +22601,9 @@ in
|
|||||||
|
|
||||||
tint2 = callPackage ../applications/misc/tint2 { };
|
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 { };
|
tipp10 = qt5.callPackage ../applications/misc/tipp10 { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user