68fd217b9e
Not using package anymore.
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, makeWrapper
|
|
, pythonOlder
|
|
, crytic-compile
|
|
, prettytable
|
|
, setuptools
|
|
, solc
|
|
# solc is currently broken on Darwin, default to false
|
|
, withSolc ? !stdenv.isDarwin
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "slither-analyzer";
|
|
version = "0.7.0";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
# No Python tests
|
|
doCheck = false;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "10r479xidgxvas4wb0z6injp59jrn7rfq8d7bxlcalc2dy4mawr0";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
propagatedBuildInputs = [ crytic-compile prettytable setuptools ];
|
|
|
|
postFixup = lib.optionalString withSolc ''
|
|
wrapProgram $out/bin/slither \
|
|
--prefix PATH : "${lib.makeBinPath [ solc ]}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Static Analyzer for Solidity";
|
|
longDescription = ''
|
|
Slither is a Solidity static analysis framework written in Python 3. It
|
|
runs a suite of vulnerability detectors, prints visual information about
|
|
contract details, and provides an API to easily write custom analyses.
|
|
'';
|
|
homepage = "https://github.com/trailofbits/slither";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ arturcygan ];
|
|
};
|
|
}
|