monero-gui: blind darwin fix

This commit is contained in:
Jörg Thalheim 2018-04-04 11:00:37 +01:00
parent 650aec314f
commit dff0404d8d
2 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,7 @@
, qtwebengine, qtx11extras, qtxmlpatterns , qtwebengine, qtx11extras, qtxmlpatterns
, monero, unbound, readline, boost, libunwind , monero, unbound, readline, boost, libunwind
, pcsclite, zeromq, cppzmq, pkgconfig , pcsclite, zeromq, cppzmq, pkgconfig
, CoreData
}: }:
with stdenv.lib; with stdenv.lib;
@ -30,7 +31,7 @@ stdenv.mkDerivation rec {
qtxmlpatterns monero unbound readline qtxmlpatterns monero unbound readline
boost libunwind pcsclite zeromq cppzmq boost libunwind pcsclite zeromq cppzmq
makeWrapper makeWrapper
]; ] ++ stdenv.lib.optional stdenv.isDarwin CoreData;
patches = [ patches = [
./move-log-file.patch ./move-log-file.patch

View File

@ -16706,6 +16706,7 @@ with pkgs;
}; };
monero-gui = libsForQt5.callPackage ../applications/altcoins/monero-gui { monero-gui = libsForQt5.callPackage ../applications/altcoins/monero-gui {
inherit (darwin.apple_sdk.frameworks) CoreData;
boost = boost15x; boost = boost15x;
}; };