2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchpatch
|
2021-01-19 06:50:56 +00:00
|
|
|
, cmake, pkg-config
|
2020-06-18 22:41:04 +01:00
|
|
|
, boost, miniupnpc, openssl, unbound
|
2018-12-09 14:48:55 +00:00
|
|
|
, zeromq, pcsclite, readline, libsodium, hidapi
|
2020-10-07 16:32:44 +01:00
|
|
|
, randomx, rapidjson
|
2018-04-04 20:33:45 +01:00
|
|
|
, CoreData, IOKit, PCSC
|
2020-10-07 16:32:44 +01:00
|
|
|
, trezorSupport ? true
|
2020-10-07 23:03:11 +01:00
|
|
|
, libusb1 ? null
|
|
|
|
, protobuf ? null
|
|
|
|
, python3 ? null
|
2018-01-26 22:17:38 +00:00
|
|
|
}:
|
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
with lib;
|
2020-10-07 16:32:44 +01:00
|
|
|
|
2018-03-31 03:07:28 +01:00
|
|
|
assert stdenv.isDarwin -> IOKit != null;
|
2020-10-07 16:32:44 +01:00
|
|
|
assert trezorSupport -> all (x: x!=null) [ libusb1 protobuf python3 ];
|
2018-03-31 03:07:28 +01:00
|
|
|
|
2018-01-26 22:17:38 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "monero";
|
2021-01-10 20:00:43 +00:00
|
|
|
version = "0.17.1.9";
|
2019-11-09 17:47:33 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "monero-project";
|
|
|
|
repo = "monero";
|
|
|
|
rev = "v${version}";
|
2021-01-10 20:00:43 +00:00
|
|
|
sha256 = "0jqss4csvkcrhrmaa3vrnyv6yiwqpbfw7037clx9xcfm4qrrfiwy";
|
2019-11-09 17:47:33 +00:00
|
|
|
fetchSubmodules = true;
|
2018-01-26 22:17:38 +00:00
|
|
|
};
|
|
|
|
|
2020-10-08 00:12:31 +01:00
|
|
|
patches = [
|
|
|
|
./use-system-libraries.patch
|
|
|
|
];
|
2020-10-07 16:32:44 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# remove vendored libraries
|
|
|
|
rm -r external/{miniupnp,randomx,rapidjson,unbound}
|
2020-10-07 23:03:11 +01:00
|
|
|
# export patched source for monero-gui
|
|
|
|
cp -r . $source
|
2020-10-07 16:32:44 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2018-01-26 22:17:38 +00:00
|
|
|
|
2018-03-31 03:07:28 +01:00
|
|
|
buildInputs = [
|
|
|
|
boost miniupnpc openssl unbound
|
2020-06-18 22:41:04 +01:00
|
|
|
zeromq pcsclite readline
|
2019-11-10 14:44:56 +00:00
|
|
|
libsodium hidapi randomx rapidjson
|
2020-10-07 16:32:44 +01:00
|
|
|
protobuf
|
|
|
|
] ++ optionals stdenv.isDarwin [ IOKit CoreData PCSC ]
|
|
|
|
++ optionals trezorSupport [ libusb1 protobuf python3 ];
|
2018-01-26 22:17:38 +00:00
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DCMAKE_BUILD_TYPE=Release"
|
2020-06-18 22:41:04 +01:00
|
|
|
"-DUSE_DEVICE_TREZOR=ON"
|
2018-01-26 22:17:38 +00:00
|
|
|
"-DBUILD_GUI_DEPS=ON"
|
2018-03-28 05:53:07 +01:00
|
|
|
"-DReadline_ROOT_DIR=${readline.dev}"
|
2020-10-07 16:32:44 +01:00
|
|
|
"-DRandomX_ROOT_DIR=${randomx}"
|
|
|
|
] ++ optional stdenv.isDarwin "-DBoost_USE_MULTITHREADED=OFF";
|
2018-01-26 22:17:38 +00:00
|
|
|
|
2020-10-07 23:03:11 +01:00
|
|
|
outputs = [ "out" "source" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-01-26 22:17:38 +00:00
|
|
|
description = "Private, secure, untraceable currency";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://getmonero.org/";
|
2018-01-26 22:17:38 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.all;
|
2018-03-31 03:07:28 +01:00
|
|
|
maintainers = with maintainers; [ ehmry rnhmjoj ];
|
2018-01-26 22:17:38 +00:00
|
|
|
};
|
|
|
|
}
|