nixpkgs-suyu/pkgs/applications/blockchains/monero-gui/default.nix

109 lines
2.8 KiB
Nix
Raw Normal View History

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