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 "--disable-mmx-optimization" 82 "--${if static then "enable" else "disable"}-staticlibs" 83 "--${if !static then "enable" else "disable"}-sharedlibs" 84 - ] ++ lib.optional withX "--with-x"; 85 86 meta = with lib; { 87 homepage = "http://www.afterstep.org/afterimage/";
··· 81 "--disable-mmx-optimization" 82 "--${if static then "enable" else "disable"}-staticlibs" 83 "--${if !static then "enable" else "disable"}-sharedlibs" 84 + "--${if withX then "with" else "without"}-x" 85 + ]; 86 87 meta = with lib; { 88 homepage = "http://www.afterstep.org/afterimage/";