Skip to content

Commit

Permalink
added gcc dependency, to allow mythril to find libgcc_s
Browse files Browse the repository at this point in the history
  • Loading branch information
monyarm committed Apr 18, 2023
1 parent b4f99b5 commit ea133fd
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 11 deletions.
36 changes: 27 additions & 9 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions packages/python-modules/mythril/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
lib,
stdenv,
pkgs,
python3Packages,
fetchFromGitHub,
py-ecc-410,
Expand Down Expand Up @@ -54,7 +54,8 @@ python3Packages.buildPythonPackage rec {
substituteInPlace requirements.txt --replace "z3-solver>=4.8.8.0" z3-solver
'';

propagatedBuildInputs = with python3Packages; [
propagatedBuildInputs = with pkgs;
with python3Packages; [
setuptools
pytest-mock
requests
Expand All @@ -65,6 +66,7 @@ python3Packages.buildPythonPackage rec {
configparser
coloredlogs
cython
gcc

#custom packages
pyparsing-247
Expand Down

0 comments on commit ea133fd

Please sign in to comment.