mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
libAfterImage: pass --without-x explicitly
This fixes build on GitHub Actions macOS machines.
This commit is contained in:
parent
60a7d2e58d
commit
fa5155a4e5
@ -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 New Issue
Block a user