Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions pkgs/by-name/mo/moneydance/package.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
{ lib, stdenv, fetchzip, makeWrapper, openjdk21, openjfx21, jvmFlags ? [ ] }:
let jdk = openjdk21.override { enableJavaFX = true; };
in stdenv.mkDerivation (finalAttrs: {
{ lib, stdenv, fetchzip, makeWrapper, openjdk22, openjfx22, jvmFlags ? [ ] }:
let
openjfx = openjfx22;
jdk = openjdk22.override {
enableJavaFX = true;
inherit openjfx;
};
in
stdenv.mkDerivation (finalAttrs: {
pname = "moneydance";
version = "2023.3_5064";
version = "2024.1_5118";

src = fetchzip {
url = "https://infinitekind.com/stabledl/${finalAttrs.version}/moneydance-linux.tar.gz";
hash = "sha256-jHr1V/gV1seenw2Q0/G405lTiabEYEsOS8p/XyByrtM=";
url = "https://infinitekind.com/stabledl/2024_5118/moneydance-linux.tar.gz";
hash = "sha256-wwSb3CuhuXB4I9jq+TpLPbd1k9UzqQbAaZkGKgi+nns=";
};

nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jdk openjfx21 ];
buildInputs = [ jdk openjfx ];

# Note the double escaping in the call to makeWrapper. The escapeShellArgs
# call quotes each element of the flags list as a word[1] and returns a
Expand Down Expand Up @@ -43,6 +49,7 @@ in stdenv.mkDerivation (finalAttrs: {

meta = {
homepage = "https://infinitekind.com/moneydance";
changelog = "https://infinitekind.com/stabledl/2024_5118/changelog.txt";
description = "An easy to use and full-featured personal finance app that doesn't compromise your privacy";
sourceProvenance = [ lib.sourceTypes.binaryBytecode ];
license = lib.licenses.unfree;
Expand Down