python3Packages.slither-analyzer: 0.6.14 -> 0.7.0
This commit is contained in:
parent
20545ee136
commit
52f4e5127b
@ -1,5 +1,7 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, makeWrapper, pythonOlder
|
{ lib, stdenv, buildPythonPackage, fetchPypi, makeWrapper, pythonOlder
|
||||||
, crytic-compile, prettytable, setuptools, solc
|
, crytic-compile, prettytable, setuptools
|
||||||
|
# solc is currently broken on Darwin, default to false
|
||||||
|
, solc, withSolc ? !stdenv.isDarwin
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -19,7 +21,7 @@ buildPythonPackage rec {
|
|||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
propagatedBuildInputs = [ crytic-compile prettytable setuptools ];
|
propagatedBuildInputs = [ crytic-compile prettytable setuptools ];
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = lib.optionalString withSolc ''
|
||||||
wrapProgram $out/bin/slither \
|
wrapProgram $out/bin/slither \
|
||||||
--prefix PATH : "${lib.makeBinPath [ solc ]}"
|
--prefix PATH : "${lib.makeBinPath [ solc ]}"
|
||||||
'';
|
'';
|
||||||
@ -32,7 +34,7 @@ buildPythonPackage rec {
|
|||||||
contract details, and provides an API to easily write custom analyses.
|
contract details, and provides an API to easily write custom analyses.
|
||||||
'';
|
'';
|
||||||
homepage = "https://github.com/trailofbits/slither";
|
homepage = "https://github.com/trailofbits/slither";
|
||||||
license = licenses.agpl3;
|
license = licenses.agpl3Plus;
|
||||||
maintainers = [ maintainers.asymmetric ];
|
maintainers = with maintainers; [ asymmetric arturcygan ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user