Merge pull request #242430 from K900/vlc-fixup

vlc: fix eval on aarch64 after #242080
This commit is contained in:
K900 2023-07-09 11:26:56 +03:00 committed by GitHub
commit e4a12fdac2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -202,10 +202,11 @@ stdenv.mkDerivation (finalAttrs: {
++ optional (waylandSupport && withQt5) qtwayland;
env = {
LIVE555_PREFIX = if stdenv.hostPlatform.isAarch then null else live555;
# vlc depends on a c11-gcc wrapper script which we don't have so we need to
# set the path to the compiler
BUILDCC = "${stdenv.cc}/bin/gcc";
} // lib.optionalAttrs (!stdenv.hostPlatform.isAarch) {
LIVE555_PREFIX = live555;
};
patches = [