Merge pull request #312409 from RaghavSood/moneydance/no-darwin

moneydance: restrict supported platforms to linux
This commit is contained in:
Weijia Wang
2024-05-17 14:04:12 +02:00
committed by GitHub
+5 -1
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 ];
};
})