about summary refs log tree commit diff
path: root/pkgs/applications/office/mmex/default.nix
blob: 14b97a0b7adbfdbe706602e7a766c69f78380612 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ lib, stdenv, fetchFromGitHub, sqlite, wxGTK30, gettext, wrapGAppsHook }:

stdenv.mkDerivation rec {
  pname = "money-manager-ex";
  version = "1.3.3";

  src = fetchFromGitHub {
    owner = "moneymanagerex";
    repo = "moneymanagerex";
    rev = "refs/tags/v${version}";
    sha256 = "sha256-5NgkP9gY4eDBoKSC/IaXiHoiz+ZdU4c/iGAzPf5IlmQ=";
  };

  nativeBuildInputs = [
    wrapGAppsHook
  ];

  buildInputs = [
    gettext
    sqlite
    wxGTK30
    wxGTK30.gtk
  ];

  meta = {
    description = "Easy-to-use personal finance software";
    homepage = "https://www.moneymanagerex.org/";
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [viric];
    platforms = with lib.platforms; linux;
    broken = true; # at 2022-11-23
  };
}