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

36 lines
810 B
Nix
Raw Normal View History

2019-12-05 03:48:57 -08:00
{ stdenv, fetchgit, sqlite, wxGTK30, gettext, wrapGAppsHook }:
2016-10-19 05:58:13 -07:00
let
2017-03-12 18:38:27 -07:00
version = "1.3.3";
in
stdenv.mkDerivation {
2019-08-13 14:52:01 -07:00
pname = "money-manager-ex";
inherit version;
2016-10-19 05:58:13 -07:00
src = fetchgit {
url = "https://github.com/moneymanagerex/moneymanagerex.git";
rev = "refs/tags/v${version}";
2017-03-12 18:38:27 -07:00
sha256 = "0r4n93z3scv0i0zqflsxwv7j4yl8jy3gr0m4l30y1q8qv0zj9n74";
};
2019-12-05 03:48:57 -08: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;
};
}