monero: actually wants CoreData instead of monero-gui
This commit is contained in:
parent
dff0404d8d
commit
b9e5aeaf79
@ -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"
|
||||||
|
@ -612,7 +612,7 @@ with pkgs;
|
|||||||
container-linux-config-transpiler = callPackage ../development/tools/container-linux-config-transpiler { };
|
container-linux-config-transpiler = callPackage ../development/tools/container-linux-config-transpiler { };
|
||||||
|
|
||||||
cconv = callPackage ../tools/text/cconv { };
|
cconv = callPackage ../tools/text/cconv { };
|
||||||
|
|
||||||
chkcrontab = callPackage ../tools/admin/chkcrontab { };
|
chkcrontab = callPackage ../tools/admin/chkcrontab { };
|
||||||
|
|
||||||
djmount = callPackage ../tools/filesystems/djmount { };
|
djmount = callPackage ../tools/filesystems/djmount { };
|
||||||
@ -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;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user