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

36 lines
808 B
Nix
Raw Normal View History

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