mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
vlc: fix eval on aarch64 after #242080
`null`s are not allowed in `env`.
This commit is contained in:
parent
cfab6ff2f7
commit
460b62a16d
@ -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 = [
|
||||
|
Loading…
Reference in New Issue
Block a user