2022-03-15 10:26:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, sqlite, wxGTK30, gettext, wrapGAppsHook }:
|
2010-01-25 21:40:52 +00:00
|
|
|
|
2022-03-15 10:26:51 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "money-manager-ex";
|
2017-03-13 01:38:27 +00:00
|
|
|
version = "1.3.3";
|
2010-01-25 21:40:52 +00:00
|
|
|
|
2022-03-15 10:26:51 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "moneymanagerex";
|
|
|
|
repo = "moneymanagerex";
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
sha256 = "sha256-5NgkP9gY4eDBoKSC/IaXiHoiz+ZdU4c/iGAzPf5IlmQ=";
|
|
|
|
};
|
2010-01-25 21:40:52 +00:00
|
|
|
|
2022-03-15 10:26:51 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
2019-12-05 11:48:57 +00:00
|
|
|
|
2022-03-15 10:26:51 +00:00
|
|
|
buildInputs = [
|
|
|
|
gettext
|
|
|
|
sqlite
|
|
|
|
wxGTK30
|
|
|
|
wxGTK30.gtk
|
|
|
|
];
|
2010-01-25 21:40:52 +00:00
|
|
|
|
2022-03-15 10:26:51 +00:00
|
|
|
meta = {
|
|
|
|
description = "Easy-to-use personal finance software";
|
|
|
|
homepage = "https://www.moneymanagerex.org/";
|
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
maintainers = with lib.maintainers; [viric];
|
|
|
|
platforms = with lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|