about summary refs log tree commit diff
path: root/pkgs/by-name
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-05-17 14:04:12 +0200
committerGitHub <noreply@github.com>2024-05-17 14:04:12 +0200
commit32557eac8039a6056918f09efd82d3fedfa3dccb (patch)
tree83b0a6a3579fdb2ff62c473fc5d8cfee7c5900c3 /pkgs/by-name
parent704511c072028e6a3de12a4b740b6a094f8fde5c (diff)
parent1184c6ad949c4726142ffbaa504eecd0a917f732 (diff)
Merge pull request #312409 from RaghavSood/moneydance/no-darwin
moneydance: restrict supported platforms to linux
Diffstat (limited to 'pkgs/by-name')
-rw-r--r--pkgs/by-name/mo/moneydance/package.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/by-name/mo/moneydance/package.nix b/pkgs/by-name/mo/moneydance/package.nix
index 0c86365380f4e..b7929fe7383d8 100644
--- a/pkgs/by-name/mo/moneydance/package.nix
+++ b/pkgs/by-name/mo/moneydance/package.nix
@@ -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 ];
   };
 })