mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-13 19:43:02 +08:00
65 lines
1.5 KiB
Nix
65 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
stdenvNoCC,
|
|
buildPythonPackage,
|
|
}:
|
|
let
|
|
version = "16.5.7";
|
|
format = "wheel";
|
|
inherit (stdenvNoCC.hostPlatform) system;
|
|
|
|
# https://pypi.org/project/frida/#files
|
|
pypiMeta =
|
|
{
|
|
x86_64-linux = {
|
|
hash = "sha256-+2P+Be7xDWBHesqcGupt6gGdUmda0zIp8HkyJqzGgio=";
|
|
platform = "manylinux1_x86_64";
|
|
};
|
|
aarch64-linux = {
|
|
hash = "sha256-CH7+4ehbrQ4JcRO7CxCVeMLPO57qzAWQPOhywbpmRE8=";
|
|
platform = "manylinux2014_aarch64";
|
|
};
|
|
x86_64-darwin = {
|
|
hash = "sha256-nG/ZDZ8jbClbzn3/raMC2JdqS2QQMEyGN/jnJLZGfWs=";
|
|
platform = "macosx_10_13_x86_64";
|
|
};
|
|
aarch64-darwin = {
|
|
hash = "sha256-6hbIKv3R4deqrZyCGXwpXk84ej8elpPGYvfUi5DCmtM=";
|
|
platform = "macosx_11_0_arm64";
|
|
};
|
|
}
|
|
.${system} or (throw "Unsupported system: ${system}");
|
|
in
|
|
buildPythonPackage {
|
|
pname = "frida-python";
|
|
inherit version format;
|
|
|
|
src = fetchPypi {
|
|
pname = "frida";
|
|
inherit version format;
|
|
inherit (pypiMeta) hash platform;
|
|
abi = "abi3";
|
|
python = "cp37";
|
|
dist = "cp37";
|
|
};
|
|
|
|
pythonImportsCheck = [
|
|
"frida"
|
|
"frida._frida"
|
|
];
|
|
|
|
meta = {
|
|
description = "Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers (Python bindings)";
|
|
homepage = "https://www.frida.re";
|
|
license = lib.licenses.wxWindows;
|
|
maintainers = with lib.maintainers; [ s1341 ];
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
"x86_64-darwin"
|
|
"aarch64-darwin"
|
|
];
|
|
};
|
|
}
|