Commit 92e1e3ac authored by Charlotte 🦝 Deleńkec's avatar Charlotte 🦝 Deleńkec Committed by Weijia Wang
Browse files

bulloak: throw on unsupported arch

parent 61593a72
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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";