python310Packages.angr: remove unicorn override (fixes #120113)
This commit is contained in:
parent
cd77d358f9
commit
e11030af6e
1 changed files with 3 additions and 18 deletions
|
@ -22,28 +22,13 @@
|
||||||
, pycparser
|
, pycparser
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, pyvex
|
, pyvex
|
||||||
, sympy
|
|
||||||
, sqlalchemy
|
|
||||||
, rpyc
|
, rpyc
|
||||||
, sortedcontainers
|
, sortedcontainers
|
||||||
|
, sqlalchemy
|
||||||
|
, sympy
|
||||||
, unicorn
|
, 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 {
|
buildPythonPackage rec {
|
||||||
pname = "angr";
|
pname = "angr";
|
||||||
version = "9.2.25";
|
version = "9.2.25";
|
||||||
|
@ -82,7 +67,7 @@ buildPythonPackage rec {
|
||||||
sortedcontainers
|
sortedcontainers
|
||||||
sqlalchemy
|
sqlalchemy
|
||||||
sympy
|
sympy
|
||||||
unicorn'
|
unicorn
|
||||||
];
|
];
|
||||||
|
|
||||||
setupPyBuildFlags = lib.optionals stdenv.isLinux [
|
setupPyBuildFlags = lib.optionals stdenv.isLinux [
|
||||||
|
|
Loading…
Reference in a new issue