libAfterImage: pass --without-x explicitly
This fixes build on GitHub Actions macOS machines.
This commit is contained in:
parent
60a7d2e58d
commit
fa5155a4e5
1 changed files with 2 additions and 1 deletions
|
@ -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…
Reference in a new issue