live555: fix eval on unsupported platforms (#133732)

This commit is contained in:
Sandro 2021-08-13 13:31:56 +02:00 committed by GitHub
parent e67c07f098
commit 2373e7d559
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
'';