haskell: mark darwin packages as broken that depend on mesa
This commit is contained in:
parent
a433cd1da1
commit
7138581355
2 changed files with 6 additions and 2 deletions
|
@ -623,7 +623,8 @@ unsupported-platforms:
|
|||
mpi-hs-binary: [ aarch64-linux, platforms.darwin ]
|
||||
mpi-hs-cereal: [ aarch64-linux, platforms.darwin ]
|
||||
mpi-hs-store: [ aarch64-linux, platforms.darwin ]
|
||||
mplayer-spot: [ aarch64-linux ]
|
||||
mplayer-spot: [ aarch64-linux, platforms.darwin ]
|
||||
monomer-hagrid: [ platforms.darwin ] # depends on mesa
|
||||
mptcp-pm: [ platforms.darwin ]
|
||||
netlink: [ platforms.darwin ]
|
||||
notifications-tray-icon: [ platforms.darwin ] # depends on gi-dbusmenu
|
||||
|
@ -642,6 +643,7 @@ unsupported-platforms:
|
|||
reflex-localize-dom: [ platforms.darwin, aarch64-linux ]
|
||||
rtlsdr: [ platforms.darwin ]
|
||||
rubberband: [ platforms.darwin ]
|
||||
SDL-mixer: [ platforms.darwin ] # depends on mesa
|
||||
sdl2-mixer: [ platforms.darwin ]
|
||||
sdl2-ttf: [ platforms.darwin ]
|
||||
sensei: [ platforms.darwin ]
|
||||
|
|
|
@ -18376,6 +18376,7 @@ self: {
|
|||
librarySystemDepends = [ SDL_mixer ];
|
||||
description = "Binding to libSDL_mixer";
|
||||
license = lib.licenses.bsd3;
|
||||
badPlatforms = lib.platforms.darwin;
|
||||
}) {inherit (pkgs) SDL_mixer;};
|
||||
|
||||
"SDL-mpeg" = callPackage
|
||||
|
@ -199506,6 +199507,7 @@ self: {
|
|||
testToolDepends = [ hspec-discover ];
|
||||
description = "A datagrid widget for the Monomer library";
|
||||
license = lib.licenses.mit;
|
||||
badPlatforms = lib.platforms.darwin;
|
||||
}) {};
|
||||
|
||||
"monomorphic" = callPackage
|
||||
|
@ -200752,7 +200754,7 @@ self: {
|
|||
executableHaskellDepends = [ base ];
|
||||
description = "Save your spot when watching movies with @mplayer@";
|
||||
license = lib.licenses.bsd3;
|
||||
badPlatforms = [ "aarch64-linux" ];
|
||||
badPlatforms = [ "aarch64-linux" ] ++ lib.platforms.darwin;
|
||||
mainProgram = "mplayer-spot";
|
||||
}) {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue