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

93 lines
2.5 KiB
Nix
Raw Normal View History

2020-03-22 02:35:31 +00:00
{ stdenv, wrapQtAppsHook, makeDesktopItem
, fetchFromGitHub, qmake, qttools, pkgconfig
, qtbase, qtdeclarative, qtgraphicaleffects
, qtmultimedia, qtxmlpatterns
, qtquickcontrols, qtquickcontrols2
2018-01-26 23:07:07 +00:00
, monero, unbound, readline, boost, libunwind
2020-06-18 21:41:46 +00:00
, libsodium, pcsclite, zeromq, libgcrypt, libgpgerror
2020-04-28 03:29:39 +00:00
, hidapi, libusb-compat-0_1, protobuf, randomx
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
2019-11-10 14:46:49 +00:00
stdenv.mkDerivation rec {
2019-08-30 23:39:25 +00:00
pname = "monero-gui";
2020-07-05 20:15:13 +00:00
version = "0.16.0.2";
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-07-05 20:15:13 +00:00
sha256 = "1b1m8vhs0hdh81ysm8s8vfwqskqsihylb51wz16kc98ba40r9gqg";
2018-01-26 23:07:07 +00:00
};
2019-11-10 14:46:49 +00:00
nativeBuildInputs = [ qmake pkgconfig wrapQtAppsHook ];
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-06-18 21:41:46 +00:00
monero unbound readline libgcrypt libgpgerror
2018-10-14 00:41:33 +00:00
boost libunwind libsodium pcsclite zeromq
2020-06-18 21:41:46 +00:00
hidapi libusb-compat-0_1 protobuf randomx
2018-04-04 10:16:21 +00:00
];
2018-01-26 23:07:07 +00:00
2019-11-03 12:34:06 +00:00
NIX_CFLAGS_COMPILE = [ "-Wno-error=format-security" ];
2019-08-30 23:39:25 +00:00
patches = [ ./move-log-file.patch ];
2018-01-26 23:07:07 +00:00
postPatch = ''
echo '
var GUI_VERSION = "${version}";
var GUI_MONERO_VERSION = "${getVersion monero}";
' > version.js
substituteInPlace monero-wallet-gui.pro \
--replace '$$[QT_INSTALL_BINS]/lrelease' '${getDev qttools}/bin/lrelease'
substituteInPlace src/daemon/DaemonManager.cpp \
--replace 'QApplication::applicationDirPath() + "' '"${monero}/bin'
'';
makeFlags = [ "INSTALL_ROOT=$(out)" ];
preBuild = ''
sed -i s#/opt/monero-wallet-gui##g Makefile
make -C src/zxcvbn-c
2020-06-18 21:41:46 +00:00
# use nixpkgs monero sources
rmdir monero
ln -s "${monero.src}" monero
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
mkdir -p $out/share/applications
cp ${desktopItem}/share/applications/* $out/share/applications
# install icons
for n in 16 24 32 48 64 96 128 256; do
size=$n"x"$n
mkdir -p $out/share/icons/hicolor/$size/apps
cp $src/images/appicons/$size.png \
$out/share/icons/hicolor/$size/apps/monero.png
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
};
}