haskellPackages: Disable packages on darwin

This commit is contained in:
maralorn 2023-10-04 22:01:10 +02:00
parent 03d0845cea
commit d3d3d46b71
No known key found for this signature in database
2 changed files with 7 additions and 2 deletions

View File

@ -662,6 +662,7 @@ unsupported-platforms:
Raincat: [ platforms.darwin ]
reactive-balsa: [ platforms.darwin ] # depends on alsa-core
reflex-dom-fragment-shader-canvas: [ platforms.darwin, aarch64-linux ]
reflex-dom: [ platforms.darwin ]
reflex-localize-dom: [ platforms.darwin, aarch64-linux ]
rtlsdr: [ platforms.darwin ]
rubberband: [ platforms.darwin ]
@ -687,7 +688,7 @@ unsupported-platforms:
webkit2gtk3-javascriptcore: [ platforms.darwin ]
wiringPi: [ aarch64-darwin ]
xattr: [ platforms.darwin ]
xgboost-haskell: [ aarch64-linux, armv7l-linux ]
xgboost-haskell: [ aarch64-linux, armv7l-linux, platforms.darwin ]
xmobar: [ platforms.darwin ]
xmonad-extras: [ platforms.darwin ]
xmonad-volume: [ platforms.darwin ]

View File

@ -249684,6 +249684,7 @@ self: {
];
description = "Functional Reactive Web Apps with Reflex";
license = lib.licenses.bsd3;
badPlatforms = lib.platforms.darwin;
maintainers = [ lib.maintainers.maralorn ];
}) {};
@ -249702,6 +249703,7 @@ self: {
];
description = "Functional Reactive Web Apps with Reflex";
license = lib.licenses.bsd3;
badPlatforms = lib.platforms.darwin;
hydraPlatforms = lib.platforms.none;
maintainers = [ lib.maintainers.maralorn ];
}) {};
@ -323353,7 +323355,9 @@ self: {
executableSystemDepends = [ xgboost ];
description = "XGBoost library for Haskell";
license = lib.licenses.mit;
badPlatforms = [ "aarch64-linux" "armv7l-linux" ];
badPlatforms = [
"aarch64-linux" "armv7l-linux"
] ++ lib.platforms.darwin;
mainProgram = "xgb-agaricus";
}) {inherit (pkgs) xgboost;};