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

118 lines
3.0 KiB
Nix
Raw Normal View History

2020-03-22 02:35:31 +00:00
{ stdenv, wrapQtAppsHook, makeDesktopItem
2020-10-06 19:14:52 +00:00
, fetchFromGitHub
, cmake, qttools, pkgconfig
2020-03-22 02:35:31 +00:00
, qtbase, qtdeclarative, qtgraphicaleffects
, qtmultimedia, qtxmlpatterns
, qtquickcontrols, qtquickcontrols2
2020-10-06 19:14:52 +00:00
, monero, miniupnpc, unbound, readline
, boost, libunwind, libsodium, pcsclite
, randomx, zeromq, libgcrypt, libgpgerror
, hidapi, rapidjson
, trezorSupport ? true
, libusb1 ? null
, protobuf ? null
, python3 ? null
2018-01-26 23:07:07 +00:00
}:
2019-11-10 14:46:49 +00:00
with stdenv.lib;
2018-01-26 23:07:07 +00:00
2020-10-06 19:14:52 +00:00
assert trezorSupport -> all (x: x!=null) [ libusb1 protobuf python3 ];
2020-10-08 00:20:00 +00:00
let
arch = if stdenv.isx86_64 then "x86-64"
else if stdenv.isi686 then "i686"
else if stdenv.isAarch64 then "armv8-a"
else throw "unsupported architecture";
in
2019-11-10 14:46:49 +00:00
stdenv.mkDerivation rec {
2019-08-30 23:39:25 +00:00
pname = "monero-gui";
2020-10-05 21:12:18 +00:00
version = "0.17.0.1";
2018-01-26 23:07:07 +00:00
src = fetchFromGitHub {
owner = "monero-project";
repo = "monero-gui";
2018-04-03 20:35:44 +00:00
rev = "v${version}";
2020-10-05 21:12:18 +00:00
sha256 = "1i9a3ampppyzsl4sllbqlr3w43sjpb3fdfxhb1j4n49p8g0jzmf3";
2018-01-26 23:07:07 +00:00
};
2020-10-06 19:14:52 +00:00
nativeBuildInputs = [
cmake pkgconfig wrapQtAppsHook
(getDev qttools)
];
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 19:14:52 +00:00
monero miniupnpc unbound readline
randomx libgcrypt libgpgerror
boost libunwind libsodium pcsclite
zeromq hidapi rapidjson
] ++ optionals trezorSupport [ libusb1 protobuf python3 ];
2018-01-26 23:07:07 +00:00
2020-10-06 19:14:52 +00: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
2019-08-30 23:39:25 +00:00
patches = [ ./move-log-file.patch ];
2018-01-26 23:07:07 +00:00
postPatch = ''
2020-10-06 19:14:52 +00:00
# set monero-gui version
substituteInPlace src/version.js.in \
--replace '@VERSION_TAG_GUI@' '${version}'
# remove this line on the next release
rm cmake/Version.cmake
2020-10-06 19:14:52 +00: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'
2020-10-06 19:14:52 +00:00
# only build external deps, *not* the full monero
substituteInPlace CMakeLists.txt \
--replace 'add_subdirectory(monero)' \
'add_subdirectory(monero EXCLUDE_FROM_ALL)'
2018-01-26 23:07:07 +00:00
'';
2020-10-08 00:20:00 +00:00
cmakeFlags = [
"-DCMAKE_INSTALL_PREFIX=$out/bin"
"-DARCH=${arch}"
];
2020-10-06 19:14:52 +00: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 19:14:52 +00: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 19:14:52 +00: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;
'';
meta = {
description = "Private, secure, untraceable currency";
homepage = "https://getmonero.org/";
license = licenses.bsd3;
platforms = platforms.all;
badPlatforms = platforms.darwin;
maintainers = with maintainers; [ rnhmjoj ];
2018-01-26 23:07:07 +00:00
};
}