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

moneydance: restrict supported platforms to linux

authored by Weijia Wang and committed by GitHub 32557eac 704511c0

+5 -1
+5 -1
pkgs/by-name/mo/moneydance/package.nix
··· 53 description = "An easy to use and full-featured personal finance app that doesn't compromise your privacy"; 54 sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; 55 license = lib.licenses.unfree; 56 - platforms = jdk.meta.platforms; 57 maintainers = [ lib.maintainers.lucasbergman ]; 58 }; 59 })
··· 53 description = "An easy to use and full-featured personal finance app that doesn't compromise your privacy"; 54 sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; 55 license = lib.licenses.unfree; 56 + # Darwin refers to Zulu Java, which breaks the evaluation of this derivation 57 + # for some reason 58 + # 59 + # https://github.com/NixOS/nixpkgs/pull/306372#issuecomment-2111688236 60 + platforms = lib.platforms.linux; 61 maintainers = [ lib.maintainers.lucasbergman ]; 62 }; 63 })