Unverified Commit acf0dbcc authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #119438 from asymmetric/drop-slither

slither-analyzer: remove from maintainers
parents 75dd5e5b 68fd217b
Loading
Loading
Loading
Loading
+13 −5
Original line number Diff line number Diff line
{ lib, stdenv, buildPythonPackage, fetchPypi, makeWrapper, pythonOlder
, crytic-compile, prettytable, setuptools
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, makeWrapper
, pythonOlder
, crytic-compile
, prettytable
, setuptools
, solc
  # solc is currently broken on Darwin, default to false
, solc, withSolc ? !stdenv.isDarwin
, withSolc ? !stdenv.isDarwin
}:

buildPythonPackage rec {
@@ -35,6 +43,6 @@ buildPythonPackage rec {
    '';
    homepage = "https://github.com/trailofbits/slither";
    license = licenses.agpl3Plus;
    maintainers = with maintainers; [ asymmetric arturcygan ];
    maintainers = with maintainers; [ arturcygan ];
  };
}