mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
78 lines
2.0 KiB
Nix
78 lines
2.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
|
|
, boost, miniupnpc, openssl, unbound
|
|
, zeromq, pcsclite, readline, libsodium, hidapi
|
|
, randomx, rapidjson
|
|
, CoreData, IOKit, PCSC
|
|
, trezorSupport ? true, libusb1, protobuf, python3
|
|
}:
|
|
|
|
let
|
|
# submodules
|
|
supercop = fetchFromGitHub {
|
|
owner = "monero-project";
|
|
repo = "supercop";
|
|
rev = "633500ad8c8759995049ccd022107d1fa8a1bbc9";
|
|
sha256 = "26UmESotSWnQ21VbAYEappLpkEMyl0jiuCaezRYd/sE=";
|
|
};
|
|
trezor-common = fetchFromGitHub {
|
|
owner = "trezor";
|
|
repo = "trezor-common";
|
|
rev = "bff7fdfe436c727982cc553bdfb29a9021b423b0";
|
|
sha256 = "VNypeEz9AV0ts8X3vINwYMOgO8VpNmyUPC4iY3OOuZI=";
|
|
};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "monero-cli";
|
|
version = "0.18.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "monero-project";
|
|
repo = "monero";
|
|
rev = "v${version}";
|
|
sha256 = "6VI5D3vP6NKdrEE5qOpKnv1wr6AWriixdOxkAa8HaCQ=";
|
|
};
|
|
|
|
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 miniupnpc openssl unbound
|
|
zeromq pcsclite readline
|
|
libsodium hidapi randomx rapidjson
|
|
protobuf
|
|
] ++ lib.optionals stdenv.isDarwin [ IOKit CoreData PCSC ]
|
|
++ lib.optionals trezorSupport [ libusb1 protobuf python3 ];
|
|
|
|
cmakeFlags = [
|
|
"-DUSE_DEVICE_TREZOR=ON"
|
|
"-DBUILD_GUI_DEPS=ON"
|
|
"-DReadline_ROOT_DIR=${readline.dev}"
|
|
"-DRandomX_ROOT_DIR=${randomx}"
|
|
] ++ lib.optional stdenv.isDarwin "-DBoost_USE_MULTITHREADED=OFF";
|
|
|
|
outputs = [ "out" "source" ];
|
|
|
|
meta = with lib; {
|
|
description = "Private, secure, untraceable currency";
|
|
homepage = "https://getmonero.org/";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
mainProgram = "monero-wallet-cli";
|
|
};
|
|
}
|