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

26 lines
688 B
Nix
Raw Normal View History

2016-10-19 12:58:13 +00:00
{ stdenv, fetchgit, sqlite, wxGTK30, gettext }:
2016-10-19 12:58:13 +00:00
let
2017-03-13 01:38:27 +00:00
version = "1.3.3";
in
stdenv.mkDerivation {
name = "money-manager-ex-${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";
};
2016-10-19 12:58:13 +00:00
buildInputs = [ sqlite wxGTK30 gettext ];
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;
};
}