555cd8a8f9
GitOrigin-RevId: 5633bcff0c6162b9e4b5f1264264611e950c8ec7
137 lines
2.9 KiB
Nix
137 lines
2.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
boost,
|
|
libsodium,
|
|
miniupnpc,
|
|
openssl,
|
|
python3,
|
|
randomx,
|
|
rapidjson,
|
|
readline,
|
|
unbound,
|
|
zeromq,
|
|
|
|
# darwin
|
|
CoreData,
|
|
IOKit,
|
|
|
|
trezorSupport ? true,
|
|
hidapi,
|
|
libusb1,
|
|
protobuf_21,
|
|
udev,
|
|
}:
|
|
|
|
let
|
|
# submodules; revs are taken from monero repo's `/external` at the given monero version tag.
|
|
supercop = fetchFromGitHub {
|
|
owner = "monero-project";
|
|
repo = "supercop";
|
|
rev = "633500ad8c8759995049ccd022107d1fa8a1bbc9";
|
|
hash = "sha256-26UmESotSWnQ21VbAYEappLpkEMyl0jiuCaezRYd/sE=";
|
|
};
|
|
trezor-common = fetchFromGitHub {
|
|
owner = "trezor";
|
|
repo = "trezor-common";
|
|
rev = "bff7fdfe436c727982cc553bdfb29a9021b423b0";
|
|
hash = "sha256-VNypeEz9AV0ts8X3vINwYMOgO8VpNmyUPC4iY3OOuZI=";
|
|
};
|
|
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "monero-cli";
|
|
version = "0.18.3.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "monero-project";
|
|
repo = "monero";
|
|
rev = "v${version}";
|
|
hash = "sha256-nDiFJjhsISYM8kTgJUaPYL44iyccnz5+Pd5beBh+lsM=";
|
|
};
|
|
|
|
patches = [ ./use-system-libraries.patch ];
|
|
|
|
postPatch = ''
|
|
# manually install submodules
|
|
rmdir external/{supercop,trezor-common}
|
|
ln -sf ${supercop} external/supercop
|
|
ln -sf ${trezor-common} external/trezor-common
|
|
# export patched source for monero-gui
|
|
cp -r . $source
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
boost
|
|
libsodium
|
|
miniupnpc
|
|
openssl
|
|
randomx
|
|
rapidjson
|
|
readline
|
|
unbound
|
|
zeromq
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
IOKit
|
|
CoreData
|
|
]
|
|
++ lib.optionals trezorSupport [
|
|
python3
|
|
hidapi
|
|
libusb1
|
|
protobuf_21
|
|
]
|
|
++ lib.optionals (trezorSupport && stdenv.hostPlatform.isLinux) [
|
|
udev
|
|
];
|
|
|
|
cmakeFlags =
|
|
[
|
|
# skip submodules init
|
|
"-DMANUAL_SUBMODULES=ON"
|
|
# required by monero-gui
|
|
"-DBUILD_GUI_DEPS=ON"
|
|
"-DReadline_ROOT_DIR=${readline.dev}"
|
|
]
|
|
++ lib.optional stdenv.hostPlatform.isDarwin "-DBoost_USE_MULTITHREADED=OFF"
|
|
++ lib.optional trezorSupport [
|
|
"-DUSE_DEVICE_TREZOR=ON"
|
|
# fix build on recent gcc versions
|
|
"-DCMAKE_CXX_FLAGS=-fpermissive"
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"source"
|
|
];
|
|
|
|
meta = {
|
|
description = "Private, secure, untraceable currency";
|
|
homepage = "https://getmonero.org/";
|
|
license = lib.licenses.bsd3;
|
|
|
|
platforms = with lib.platforms; linux;
|
|
|
|
# macOS/ARM has a working `monerod` (at least), but `monero-wallet-cli`
|
|
# segfaults on start after entering the wallet password, when built in release mode.
|
|
# Building the same revision in debug mode to root-cause the above problem doesn't work
|
|
# because of https://github.com/monero-project/monero/issues/9486
|
|
badPlatforms = [ "aarch64-darwin" ];
|
|
|
|
maintainers = with lib.maintainers; [
|
|
pmw
|
|
rnhmjoj
|
|
];
|
|
mainProgram = "monero-wallet-cli";
|
|
};
|
|
}
|