nixpkgs/pkgs/applications/office/mmex/default.nix

36 lines
810 B
Nix
Raw Normal View History

2019-12-05 11:48:57 +00:00
{ stdenv, fetchgit, sqlite, wxGTK30, gettext, wrapGAppsHook }:
2016-10-19 12:58:13 +00:00
let
2017-03-13 01:38:27 +00:00
version = "1.3.3";
in
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "money-manager-ex";
inherit version;
2016-10-19 12:58:13 +00:00
src = fetchgit {
url = "https://github.com/moneymanagerex/moneymanagerex.git";
rev = "refs/tags/v${version}";
2017-03-13 01:38:27 +00:00
sha256 = "0r4n93z3scv0i0zqflsxwv7j4yl8jy3gr0m4l30y1q8qv0zj9n74";
};
2019-12-05 11:48:57 +00:00
nativeBuildInputs = [
wrapGAppsHook
];
buildInputs = [
gettext
sqlite
wxGTK30
wxGTK30.gtk
];
meta = {
description = "Easy-to-use personal finance software";
homepage = "https://www.moneymanagerex.org/";
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}