mmex: use gtk3 wxGTK

This commit is contained in:
worldofpeace 2019-12-05 06:48:57 -05:00
parent a11e023201
commit f9deadf01c
2 changed files with 15 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, fetchgit, sqlite, wxGTK30, gettext }:
{ stdenv, fetchgit, sqlite, wxGTK30, gettext, wrapGAppsHook }:
let
@ -14,7 +14,16 @@ in
sha256 = "0r4n93z3scv0i0zqflsxwv7j4yl8jy3gr0m4l30y1q8qv0zj9n74";
};
buildInputs = [ sqlite wxGTK30 gettext ];
nativeBuildInputs = [
wrapGAppsHook
];
buildInputs = [
gettext
sqlite
wxGTK30
wxGTK30.gtk
];
meta = {
description = "Easy-to-use personal finance software";

View File

@ -20001,7 +20001,10 @@ in
MMA = callPackage ../applications/audio/MMA { };
mmex = callPackage ../applications/office/mmex {
wxGTK30 = wxGTK30.override { withWebKit = true ; };
wxGTK30 = wxGTK30.override {
withWebKit = true;
withGtk2 = false;
};
};
mmsd = callPackage ../tools/networking/mmsd { };