3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/blockchains/monero-gui/default.nix

104 lines
2.8 KiB
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, wrapQtAppsHook, makeDesktopItem
2020-10-06 20:14:52 +01:00
, fetchFromGitHub
, cmake, qttools, pkg-config
2020-03-22 02:35:31 +00:00
, qtbase, qtdeclarative, qtgraphicaleffects
, qtmultimedia, qtxmlpatterns
, qtquickcontrols, qtquickcontrols2
, qtmacextras
2020-10-06 20:14:52 +01:00
, monero, miniupnpc, unbound, readline
, boost, libunwind, libsodium, pcsclite
, randomx, zeromq, libgcrypt, libgpg-error
2021-01-11 15:09:11 +00:00
, hidapi, rapidjson, quirc
2021-07-16 00:27:26 +01:00
, trezorSupport ? true, libusb1, protobuf, python3
2018-01-26 23:07:07 +00:00
}:
2019-11-10 14:46:49 +00:00
stdenv.mkDerivation rec {
2019-08-31 00:39:25 +01:00
pname = "monero-gui";
2021-09-09 01:12:10 +01:00
version = "0.17.2.3";
2018-01-26 23:07:07 +00:00
src = fetchFromGitHub {
owner = "monero-project";
repo = "monero-gui";
2018-04-03 21:35:44 +01:00
rev = "v${version}";
2021-09-09 01:12:10 +01:00
sha256 = "1d8y5yqyw0db2jdv9mwkczwm2qcwhzyslvq994yq5rvs4vkd8xjg";
2018-01-26 23:07:07 +00:00
};
2020-10-06 20:14:52 +01:00
nativeBuildInputs = [
cmake pkg-config wrapQtAppsHook
2021-07-16 00:27:26 +01:00
(lib.getDev qttools)
2020-10-06 20:14:52 +01:00
];
2018-01-26 23:07:07 +00:00
buildInputs = [
2020-03-22 02:35:31 +00:00
qtbase qtdeclarative qtgraphicaleffects
qtmultimedia qtquickcontrols qtquickcontrols2
qtxmlpatterns
2020-10-06 20:14:52 +01:00
monero miniupnpc unbound readline
randomx libgcrypt libgpg-error
2020-10-06 20:14:52 +01:00
boost libunwind libsodium pcsclite
2021-01-11 15:09:11 +00:00
zeromq hidapi rapidjson quirc
2021-07-16 00:27:26 +01:00
] ++ lib.optionals trezorSupport [ libusb1 protobuf python3 ]
++ lib.optionals stdenv.isDarwin [ qtmacextras ];
2018-01-26 23:07:07 +00:00
2020-10-06 20:14:52 +01:00
postUnpack = ''
# copy monero sources here
# (needs to be writable)
cp -r ${monero.source}/* source/monero
chmod -R +w source/monero
'';
2019-11-03 12:34:06 +00:00
2021-05-02 10:41:56 +01:00
patches = [
./move-log-file.patch
./use-system-libquirc.patch
];
2018-01-26 23:07:07 +00:00
postPatch = ''
2020-10-06 20:14:52 +01:00
# set monero-gui version
substituteInPlace src/version.js.in \
--replace '@VERSION_TAG_GUI@' '${version}'
2020-10-06 20:14:52 +01:00
# use monerod from the monero package
2018-01-26 23:07:07 +00:00
substituteInPlace src/daemon/DaemonManager.cpp \
--replace 'QApplication::applicationDirPath() + "' '"${monero}/bin'
2021-05-02 10:41:56 +01:00
# 1: only build external deps, *not* the full monero
# 2: use nixpkgs libraries
2020-10-06 20:14:52 +01:00
substituteInPlace CMakeLists.txt \
--replace 'add_subdirectory(monero)' \
2021-05-02 10:41:56 +01:00
'add_subdirectory(monero EXCLUDE_FROM_ALL)' \
2021-01-11 15:09:11 +00:00
--replace 'add_subdirectory(external)' ""
2018-01-26 23:07:07 +00:00
'';
2021-05-02 10:41:56 +01:00
cmakeFlags = [ "-DARCH=default" ];
2020-10-06 20:14:52 +01:00
2018-01-26 23:07:07 +00:00
desktopItem = makeDesktopItem {
name = "monero-wallet-gui";
exec = "monero-wallet-gui";
icon = "monero";
desktopName = "Monero";
2018-01-26 23:07:07 +00:00
genericName = "Wallet";
categories = "Network;Utility;";
2018-01-26 23:07:07 +00:00
};
postInstall = ''
# install desktop entry
2020-10-06 20:14:52 +01:00
install -Dm644 -t $out/share/applications \
${desktopItem}/share/applications/*
2018-01-26 23:07:07 +00:00
# install icons
for n in 16 24 32 48 64 96 128 256; do
size=$n"x"$n
2020-10-06 20:14:52 +01:00
install -Dm644 \
-t $out/share/icons/hicolor/$size/apps/monero.png \
$src/images/appicons/$size.png
2018-01-26 23:07:07 +00:00
done;
'';
2021-07-16 00:27:26 +01:00
meta = with lib; {
description = "Private, secure, untraceable currency";
homepage = "https://getmonero.org/";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ rnhmjoj ];
2018-01-26 23:07:07 +00:00
};
}