63 lines
2.8 KiB
Ruby
63 lines
2.8 KiB
Ruby
class SlitherAnalyzer < Formula
|
|
include Language::Python::Virtualenv
|
|
|
|
desc "Solidity static analysis framework written in Python 3"
|
|
homepage "https://github.com/crytic/slither"
|
|
url "https://files.pythonhosted.org/packages/7e/35/08f27352ce2d10e65bac7c17085bd74904cfeb9e831b60e71b62fa5a2400/slither-analyzer-0.9.1.tar.gz"
|
|
sha256 "25a3860309bda599bce69de129620aa5b38c82b87554eafe0eff5117b81bac18"
|
|
license "AGPL-3.0-only"
|
|
head "https://github.com/crytic/slither.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "ecb80e5ea4a66190e907804d54467bcb7fbcabbc783cf77db626d3546b71e892"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "0125106eaa72b73eaf42570755d3efbe07a1cecf3a8d016b85b6deebe791c3a9"
|
|
sha256 cellar: :any_skip_relocation, ventura: "8ef8f60cdf022d541e9343cf569e4dfbc56e28c19e30faf8d69679c61541f6cf"
|
|
sha256 cellar: :any_skip_relocation, monterey: "c79ddaacdf344efe0ddd684099d79ff633aebf933d87780a39d6ea4af7ee0565"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "8c6a9092e992f9c2ba123c1ff2bfcb71435413c3b641eac50caff6a30a730142"
|
|
sha256 cellar: :any_skip_relocation, catalina: "3db5c6c6eca7ce3772d088683770e9b47c76a141110e22bcfe1ad81bbfcab136"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "3e3c745a9a77043c03658e5781fcff477f5a765001dde1b63ce74d341761c76e"
|
|
end
|
|
|
|
depends_on "crytic-compile"
|
|
depends_on "python@3.10"
|
|
depends_on "solc-select"
|
|
|
|
resource "prettytable" do
|
|
url "https://files.pythonhosted.org/packages/a5/aa/0852b0ee91587a766fbc872f398ed26366c7bf26373d5feb974bebbde8d2/prettytable-3.4.1.tar.gz"
|
|
sha256 "7d7dd84d0b206f2daac4471a72f299d6907f34516064feb2838e333a4e2567bd"
|
|
end
|
|
|
|
resource "wcwidth" do
|
|
url "https://files.pythonhosted.org/packages/89/38/459b727c381504f361832b9e5ace19966de1a235d73cdbdea91c771a1155/wcwidth-0.2.5.tar.gz"
|
|
sha256 "c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"
|
|
end
|
|
|
|
def install
|
|
virtualenv_install_with_resources
|
|
site_packages = Language::Python.site_packages("python3.10")
|
|
crytic_compile = Formula["crytic-compile"].opt_libexec
|
|
(libexec/site_packages/"homebrew-crytic-compile.pth").write crytic_compile/site_packages
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.sol").write <<~EOS
|
|
pragma solidity ^0.8.0;
|
|
contract Test {
|
|
function incorrect_shift() internal returns (uint a) {
|
|
assembly {
|
|
a := shr(a, 8)
|
|
}
|
|
}
|
|
}
|
|
EOS
|
|
|
|
system "solc-select", "install", "0.8.0"
|
|
|
|
with_env(SOLC_VERSION: "0.8.0") do
|
|
# slither exits with code 255 if high severity findings are found
|
|
assert_match("1 result(s) found",
|
|
shell_output("#{bin}/slither --detect incorrect-shift --fail-high #{testpath}/test.sol 2>&1", 255))
|
|
end
|
|
end
|
|
end
|