forked from mirrors/nixpkgs
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
69 lines
1.7 KiB
Nix
69 lines
1.7 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch
|
|
, cmake, pkg-config
|
|
, boost, miniupnpc, openssl, unbound
|
|
, zeromq, pcsclite, readline, libsodium, hidapi
|
|
, randomx, rapidjson
|
|
, CoreData, IOKit, PCSC
|
|
, trezorSupport ? true
|
|
, libusb1 ? null
|
|
, protobuf ? null
|
|
, python3 ? null
|
|
}:
|
|
|
|
with lib;
|
|
|
|
assert stdenv.isDarwin -> IOKit != null;
|
|
assert trezorSupport -> all (x: x!=null) [ libusb1 protobuf python3 ];
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "monero";
|
|
version = "0.17.1.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "monero-project";
|
|
repo = "monero";
|
|
rev = "v${version}";
|
|
sha256 = "0jqss4csvkcrhrmaa3vrnyv6yiwqpbfw7037clx9xcfm4qrrfiwy";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
patches = [
|
|
./use-system-libraries.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
# remove vendored libraries
|
|
rm -r external/{miniupnp,randomx,rapidjson,unbound}
|
|
# 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
|
|
] ++ optionals stdenv.isDarwin [ IOKit CoreData PCSC ]
|
|
++ optionals trezorSupport [ libusb1 protobuf python3 ];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_BUILD_TYPE=Release"
|
|
"-DUSE_DEVICE_TREZOR=ON"
|
|
"-DBUILD_GUI_DEPS=ON"
|
|
"-DReadline_ROOT_DIR=${readline.dev}"
|
|
"-DRandomX_ROOT_DIR=${randomx}"
|
|
] ++ 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; [ ehmry rnhmjoj ];
|
|
};
|
|
}
|