moneydance: restrict supported platforms to linux

This commit is contained in:
Raghav Sood 2024-05-17 17:44:02 +08:00
parent 3f888f6733
commit 1184c6ad94
No known key found for this signature in database
GPG Key ID: 13D53E9EB65DE19C

View File

@ -53,7 +53,11 @@ stdenv.mkDerivation (finalAttrs: {
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;
platforms = jdk.meta.platforms;
# Darwin refers to Zulu Java, which breaks the evaluation of this derivation
# for some reason
#
# https://github.com/NixOS/nixpkgs/pull/306372#issuecomment-2111688236
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.lucasbergman ];
};
})