mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 09:44:18 +00:00
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
|
||||
, boost, miniupnpc, openssl, unbound, cppzmq
|
||||
, zeromq, pcsclite, readline
|
||||
, IOKit ? null
|
||||
, IOKit
|
||||
, CoreData
|
||||
}:
|
||||
|
||||
assert stdenv.isDarwin -> IOKit != null;
|
||||
@ -24,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [
|
||||
boost miniupnpc openssl unbound
|
||||
cppzmq zeromq pcsclite readline
|
||||
] ++ optional stdenv.isDarwin IOKit;
|
||||
] ++ optionals stdenv.isDarwin [ IOKit CoreData ];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DCMAKE_BUILD_TYPE=Release"
|
||||
|
@ -612,7 +612,7 @@ with pkgs;
|
||||
container-linux-config-transpiler = callPackage ../development/tools/container-linux-config-transpiler { };
|
||||
|
||||
cconv = callPackage ../tools/text/cconv { };
|
||||
|
||||
|
||||
chkcrontab = callPackage ../tools/admin/chkcrontab { };
|
||||
|
||||
djmount = callPackage ../tools/filesystems/djmount { };
|
||||
@ -16701,12 +16701,11 @@ with pkgs;
|
||||
mod-distortion = callPackage ../applications/audio/mod-distortion { };
|
||||
|
||||
monero = callPackage ../applications/altcoins/monero {
|
||||
inherit (darwin.apple_sdk.frameworks) IOKit;
|
||||
inherit (darwin.apple_sdk.frameworks) IOKit CoreData;
|
||||
boost = boost15x;
|
||||
};
|
||||
|
||||
monero-gui = libsForQt5.callPackage ../applications/altcoins/monero-gui {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreData;
|
||||
boost = boost15x;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user