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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
727 B
Nix
Raw Normal View History

2022-03-15 10:26:51 +00:00
{ lib, stdenv, fetchFromGitHub, sqlite, wxGTK30, gettext, wrapGAppsHook }:
2022-03-15 10:26:51 +00:00
stdenv.mkDerivation rec {
pname = "money-manager-ex";
2017-03-13 01:38:27 +00:00
version = "1.3.3";
2022-03-15 10:26:51 +00:00
src = fetchFromGitHub {
owner = "moneymanagerex";
repo = "moneymanagerex";
rev = "refs/tags/v${version}";
sha256 = "sha256-5NgkP9gY4eDBoKSC/IaXiHoiz+ZdU4c/iGAzPf5IlmQ=";
};
2022-03-15 10:26:51 +00:00
nativeBuildInputs = [
wrapGAppsHook
];
2019-12-05 11:48:57 +00:00
2022-03-15 10:26:51 +00:00
buildInputs = [
gettext
sqlite
wxGTK30
wxGTK30.gtk
];
2022-03-15 10:26:51 +00:00
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;
};
}