live555: fix eval on unsupported platforms (#133732)
This commit is contained in:
parent
e67c07f098
commit
2373e7d559
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
|
|||
i686-linux = "linux";
|
||||
x86_64-linux = "linux-64bit";
|
||||
aarch64-linux = "linux-64bit";
|
||||
}.${stdenv.hostPlatform.system}}
|
||||
}.${stdenv.hostPlatform.system} or (throw "Unsupported platform ${stdenv.hostPlatform.system}")}
|
||||
|
||||
runHook postConfigure
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue