bulloak: throw on unsupported arch

This commit is contained in:
Charlotte 🦝 Deleńkec 2025-06-26 17:28:06 +01:00 committed by Weijia Wang
parent 61593a72a0
commit 92e1e3ac5f

View File

@ -47,7 +47,9 @@ rustPlatform.buildRustPackage rec {
doCheck = false;
# provide the list of solc versions to the `svm-rs-builds` dependency
SVM_RELEASES_LIST_JSON = solc-versions.${stdenv.hostPlatform.system};
SVM_RELEASES_LIST_JSON =
solc-versions.${stdenv.hostPlatform.system}
or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
meta = {
description = "Solidity test generator based on the Branching Tree Technique";