lol

libAfterImage: pass --without-x explicitly

This fixes build on GitHub Actions macOS machines.

+2 -1
+2 -1
pkgs/development/libraries/libAfterImage/default.nix
··· 81 81 "--disable-mmx-optimization" 82 82 "--${if static then "enable" else "disable"}-staticlibs" 83 83 "--${if !static then "enable" else "disable"}-sharedlibs" 84 - ] ++ lib.optional withX "--with-x"; 84 + "--${if withX then "with" else "without"}-x" 85 + ]; 85 86 86 87 meta = with lib; { 87 88 homepage = "http://www.afterstep.org/afterimage/";