mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
haskellPackages: Disable packages on darwin
This commit is contained in:
parent
03d0845cea
commit
d3d3d46b71
@ -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 ]
|
||||
|
@ -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;};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user