about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/office/mmex/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/office/mmex/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/office/mmex/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/office/mmex/default.nix b/nixpkgs/pkgs/applications/office/mmex/default.nix
new file mode 100644
index 000000000000..3ddca8fe7620
--- /dev/null
+++ b/nixpkgs/pkgs/applications/office/mmex/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchgit, sqlite, wxGTK30, gettext }:
+
+
+let
+  version = "1.3.3";
+in
+  stdenv.mkDerivation {
+    name = "money-manager-ex-${version}";
+
+    src = fetchgit {
+      url = "https://github.com/moneymanagerex/moneymanagerex.git";
+      rev = "refs/tags/v${version}";
+      sha256 = "0r4n93z3scv0i0zqflsxwv7j4yl8jy3gr0m4l30y1q8qv0zj9n74";
+    };
+
+    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;
+    };
+  }