lol

vix: limit package to x86_64-linux (#353569)

And disable sdltest on darwin, if this limitation is ever fixed, since
running sdltest breaks during configure.

Co-authored-by: Reno Dakota <paparodeo@proton.me>

authored by

Martin Weinelt
Reno Dakota
and committed by
GitHub
20fff77f d16349da

+6
+6
pkgs/tools/misc/vix/default.nix
··· 13 13 14 14 nativeBuildInputs = [ autoreconfHook ]; 15 15 16 + configureFlags = [ 17 + (lib.enableFeature (!stdenv.hostPlatform.isDarwin) "sdltest") 18 + ]; 19 + 16 20 buildInputs = [ SDL ]; 17 21 18 22 meta = with lib; { ··· 21 25 license = licenses.gpl3; 22 26 maintainers = [ maintainers.ehmry ]; 23 27 mainProgram = "vix"; 28 + # sys/io.h missing on other platforms 29 + platforms = [ "x86_64-linux" ]; 24 30 }; 25 31 }