580a9d5740
See #174946.
103 lines
2.1 KiB
Nix
103 lines
2.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, stdenv
|
|
# for passthru.plugins
|
|
, pkgs
|
|
# nativeBuildInputs
|
|
, cmake
|
|
, pkg-config
|
|
, wrapQtAppsHook
|
|
# Qt
|
|
, qt5compat
|
|
, qtbase
|
|
, qtwayland
|
|
, qtsvg
|
|
, qttools
|
|
, qtwebengine
|
|
# buildInputs
|
|
, graphviz
|
|
, python3
|
|
, rizin
|
|
}:
|
|
|
|
let cutter = stdenv.mkDerivation rec {
|
|
pname = "cutter";
|
|
version = "2.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rizinorg";
|
|
repo = "cutter";
|
|
rev = "v${version}";
|
|
hash = "sha256-88yIqFYIv7o6aC2YSJwWJ46fZJBnOmifv+SirsfS4tw=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
patches = [
|
|
# tracking: https://github.com/rizinorg/cutter/pull/3268
|
|
(fetchpatch {
|
|
name = "cutter-simplify-python-binding-include-handling.patch";
|
|
url = "https://github.com/rizinorg/cutter/compare/7256fbb00e92ab12a24d14a92364db482ed295cb..ca5949d9d7c907185cf3d062d9fa71c34c5960d4.diff";
|
|
hash = "sha256-bqV2FTA8lMNpHBDXdenNx+1cLYa7MH47XKo1YatmLV4=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
python3
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
python3.pkgs.pyside6
|
|
];
|
|
|
|
buildInputs = [
|
|
graphviz
|
|
python3
|
|
qt5compat
|
|
qtbase
|
|
qtsvg
|
|
qttools
|
|
qtwebengine
|
|
rizin
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
qtwayland
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCUTTER_USE_BUNDLED_RIZIN=OFF"
|
|
"-DCUTTER_ENABLE_PYTHON=ON"
|
|
"-DCUTTER_ENABLE_PYTHON_BINDINGS=ON"
|
|
"-DCUTTER_ENABLE_GRAPHVIZ=ON"
|
|
"-DCUTTER_QT6=ON"
|
|
];
|
|
|
|
preBuild = ''
|
|
qtWrapperArgs+=(--prefix PYTHONPATH : "$PYTHONPATH")
|
|
'';
|
|
|
|
passthru = rec {
|
|
plugins = rizin.plugins // {
|
|
rz-ghidra = rizin.plugins.rz-ghidra.override {
|
|
inherit cutter qtbase qtsvg;
|
|
enableCutterPlugin = true;
|
|
};
|
|
};
|
|
withPlugins = filter: pkgs.callPackage ./wrapper.nix {
|
|
inherit rizin cutter;
|
|
isCutter = true;
|
|
plugins = filter plugins;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Free and Open Source Reverse Engineering Platform powered by rizin";
|
|
homepage = src.meta.homepage;
|
|
license = licenses.gpl3;
|
|
mainProgram = "cutter";
|
|
maintainers = with maintainers; [ mic92 dtzWill ];
|
|
inherit (rizin.meta) platforms;
|
|
};
|
|
}; in cutter
|