monero: actually wants CoreData instead of monero-gui

This commit is contained in:
Jörg Thalheim 2018-04-04 11:14:42 +01:00
parent dff0404d8d
commit b9e5aeaf79
2 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,8 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, git { stdenv, fetchFromGitHub, cmake, pkgconfig, git
, boost, miniupnpc, openssl, unbound, cppzmq , boost, miniupnpc, openssl, unbound, cppzmq
, zeromq, pcsclite, readline , zeromq, pcsclite, readline
, IOKit ? null , IOKit
, CoreData
}: }:
assert stdenv.isDarwin -> IOKit != null; assert stdenv.isDarwin -> IOKit != null;
@ -24,7 +25,7 @@ stdenv.mkDerivation rec {
buildInputs = [ buildInputs = [
boost miniupnpc openssl unbound boost miniupnpc openssl unbound
cppzmq zeromq pcsclite readline cppzmq zeromq pcsclite readline
] ++ optional stdenv.isDarwin IOKit; ] ++ optionals stdenv.isDarwin [ IOKit CoreData ];
cmakeFlags = [ cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Release" "-DCMAKE_BUILD_TYPE=Release"

View File

@ -16701,12 +16701,11 @@ with pkgs;
mod-distortion = callPackage ../applications/audio/mod-distortion { }; mod-distortion = callPackage ../applications/audio/mod-distortion { };
monero = callPackage ../applications/altcoins/monero { monero = callPackage ../applications/altcoins/monero {
inherit (darwin.apple_sdk.frameworks) IOKit; inherit (darwin.apple_sdk.frameworks) IOKit CoreData;
boost = boost15x; boost = boost15x;
}; };
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;
}; };