libAfterImage: pass --without-x explicitly

This fixes build on GitHub Actions macOS machines.
main
Dmitry Kalinkin 2 years ago
parent 60a7d2e58d
commit fa5155a4e5
  1. 3
      pkgs/development/libraries/libAfterImage/default.nix

@ -81,7 +81,8 @@ stdenv.mkDerivation {
"--disable-mmx-optimization"
"--${if static then "enable" else "disable"}-staticlibs"
"--${if !static then "enable" else "disable"}-sharedlibs"
] ++ lib.optional withX "--with-x";
"--${if withX then "with" else "without"}-x"
];
meta = with lib; {
homepage = "http://www.afterstep.org/afterimage/";

Loading…
Cancel
Save