Skip to content

Commit

Permalink
python310Packages.angr: remove unicorn override (fixes #120113)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Nov 24, 2022
1 parent cd77d35 commit e11030a
Showing 1 changed file with 3 additions and 18 deletions.
21 changes: 3 additions & 18 deletions pkgs/development/python-modules/angr/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,28 +22,13 @@
, pycparser
, pythonOlder
, pyvex
, sympy
, sqlalchemy
, rpyc
, sortedcontainers
, sqlalchemy
, sympy
, unicorn
}:

let
# Only the pinned release in setup.py works properly
unicorn' = unicorn.overridePythonAttrs (old: rec {
pname = "unicorn";
version = "1.0.2-rc4";
src = fetchFromGitHub {
owner = "unicorn-engine";
repo = pname;
rev = version;
sha256 = "17nyccgk7hpc4hab24yn57f1xnmr7kq4px98zbp2bkwcrxny8gwy";
};
doCheck = false;
});
in

buildPythonPackage rec {
pname = "angr";
version = "9.2.25";
Expand Down Expand Up @@ -82,7 +67,7 @@ buildPythonPackage rec {
sortedcontainers
sqlalchemy
sympy
unicorn'
unicorn
];

setupPyBuildFlags = lib.optionals stdenv.isLinux [
Expand Down

0 comments on commit e11030a

Please sign in to comment.