monero-gui: 0.15.0.1 -> 0.15.0.4
This commit is contained in:
parent
ddabb09c35
commit
3c93f1ba96
@ -1,36 +1,35 @@
|
|||||||
{ stdenv, wrapQtAppsHook, makeDesktopItem, fetchFromGitHub
|
{ stdenv, wrapQtAppsHook, makeDesktopItem
|
||||||
, qtbase, qmake, qtmultimedia, qttools
|
, fetchFromGitHub, qmake, qttools, pkgconfig
|
||||||
, qtgraphicaleffects, qtdeclarative
|
, qtbase, qtdeclarative, qtgraphicaleffects
|
||||||
, qtlocation, qtquickcontrols, qtquickcontrols2
|
, qtmultimedia, qtxmlpatterns
|
||||||
, qtwebchannel, qtwebengine, qtx11extras, qtxmlpatterns
|
, qtquickcontrols, qtquickcontrols2
|
||||||
, monero, unbound, readline, boost, libunwind
|
, monero, unbound, readline, boost, libunwind
|
||||||
, libsodium, pcsclite, zeromq, cppzmq, pkgconfig
|
, libsodium, pcsclite, zeromq, cppzmq
|
||||||
, hidapi, randomx
|
, hidapi, libusb, protobuf, randomx
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "monero-gui";
|
pname = "monero-gui";
|
||||||
version = "0.15.0.1";
|
version = "0.15.0.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "monero-project";
|
owner = "monero-project";
|
||||||
repo = "monero-gui";
|
repo = "monero-gui";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "08j8kkncdn57xql0bhmlzjpjkdfhqbpda1p07r797q8qi0nl4w8n";
|
sha256 = "12m5fgnxkr11q2arx1m5ccpxqm5ljcvm6l547dwqn297zs5jim4z";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ qmake pkgconfig wrapQtAppsHook ];
|
nativeBuildInputs = [ qmake pkgconfig wrapQtAppsHook ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
qtbase qtmultimedia qtgraphicaleffects
|
qtbase qtdeclarative qtgraphicaleffects
|
||||||
qtdeclarative qtlocation
|
qtmultimedia qtquickcontrols qtquickcontrols2
|
||||||
qtquickcontrols qtquickcontrols2
|
qtxmlpatterns
|
||||||
qtwebchannel qtwebengine qtx11extras
|
monero unbound readline
|
||||||
qtxmlpatterns monero unbound readline
|
|
||||||
boost libunwind libsodium pcsclite zeromq
|
boost libunwind libsodium pcsclite zeromq
|
||||||
cppzmq hidapi randomx
|
cppzmq hidapi libusb protobuf randomx
|
||||||
];
|
];
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = [ "-Wno-error=format-security" ];
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=format-security" ];
|
||||||
|
@ -1,15 +1,14 @@
|
|||||||
diff --git a/main.cpp b/main.cpp
|
diff --git a/src/main/main.cpp b/src/main/main.cpp
|
||||||
index a51568d..5a9f683 100644
|
index c5210e5f..45794d72 100644
|
||||||
--- a/main.cpp
|
--- a/src/main/main.cpp
|
||||||
+++ b/main.cpp
|
+++ b/src/main/main.cpp
|
||||||
@@ -152,7 +152,9 @@ int main(int argc, char *argv[])
|
@@ -220,6 +220,9 @@ int main(int argc, char *argv[])
|
||||||
QCommandLineOption logPathOption(QStringList() << "l" << "log-file",
|
QCommandLineOption logPathOption(QStringList() << "l" << "log-file",
|
||||||
QCoreApplication::translate("main", "Log to specified file"),
|
QCoreApplication::translate("main", "Log to specified file"),
|
||||||
QCoreApplication::translate("main", "file"));
|
QCoreApplication::translate("main", "file"));
|
||||||
-
|
|
||||||
+ logPathOption.setDefaultValue(
|
+ logPathOption.setDefaultValue(
|
||||||
+ QStandardPaths::writableLocation(QStandardPaths::CacheLocation)
|
+ QStandardPaths::writableLocation(QStandardPaths::CacheLocation)
|
||||||
+ + "/monero-wallet-gui.log");
|
+ + "/monero-wallet-gui.log");
|
||||||
parser.addOption(logPathOption);
|
|
||||||
parser.addHelpOption();
|
QCommandLineOption testQmlOption("test-qml");
|
||||||
parser.process(app);
|
testQmlOption.setFlags(QCommandLineOption::HiddenFromHelp);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user