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

88 lines
2.4 KiB
Nix
Raw Normal View History

2019-08-30 23:39:25 +00:00
{ mkDerivation, lib, makeDesktopItem, fetchFromGitHub
2018-01-26 23:07:07 +00:00
, qtbase, qmake, qtmultimedia, qttools
, qtgraphicaleffects, qtdeclarative
2019-03-19 21:42:02 +00:00
, qtlocation, qtquickcontrols, qtquickcontrols2
, qtwebchannel, qtwebengine, qtx11extras, qtxmlpatterns
2018-01-26 23:07:07 +00:00
, monero, unbound, readline, boost, libunwind
2018-10-14 00:41:33 +00:00
, libsodium, pcsclite, zeromq, cppzmq, pkgconfig
2018-11-16 21:58:05 +00:00
, hidapi
2018-01-26 23:07:07 +00:00
}:
2019-08-30 23:39:25 +00:00
with lib;
2018-01-26 23:07:07 +00:00
2019-08-30 23:39:25 +00:00
mkDerivation rec {
pname = "monero-gui";
version = "0.14.1.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}";
sha256 = "1rm043r6y2mzy8pclnzbjjfxgps8pkfa2b92p66k8y8rdmgq6m1k";
2018-01-26 23:07:07 +00:00
};
2019-08-30 23:39:25 +00:00
nativeBuildInputs = [ qmake pkgconfig ];
2018-01-26 23:07:07 +00:00
buildInputs = [
qtbase qtmultimedia qtgraphicaleffects
2019-03-19 21:42:02 +00:00
qtdeclarative qtlocation
qtquickcontrols qtquickcontrols2
2018-01-26 23:07:07 +00:00
qtwebchannel qtwebengine qtx11extras
qtxmlpatterns monero unbound readline
2018-10-14 00:41:33 +00:00
boost libunwind libsodium pcsclite zeromq
cppzmq hidapi
2018-04-04 10:16:21 +00:00
];
2018-01-26 23:07:07 +00:00
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
'';
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 = "Application;Network;Utility;";
};
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
};
}