nixpkgs/pkgs/development/tools/analysis/rizin/cutter.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.4 KiB
Nix
Raw Normal View History

{ fetchFromGitHub, lib, mkDerivation
# for passthru.plugins
, pkgs
# nativeBuildInputs
, qmake, pkg-config, cmake
# Qt
, qtbase, qtsvg, qtwebengine, qttools
# buildInputs
2023-08-05 14:18:43 +00:00
, graphviz
, rizin
, python3
, wrapQtAppsHook
}:
let cutter = mkDerivation rec {
pname = "cutter";
2023-08-05 14:18:43 +00:00
version = "2.3.0";
src = fetchFromGitHub {
owner = "rizinorg";
repo = "cutter";
rev = "v${version}";
2023-08-05 14:18:43 +00:00
hash = "sha256-oQ3sLIGKMEw3k27aSFcrJqo0TgGkkBNdzl6GSoOIYak=";
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake qmake pkg-config python3 wrapQtAppsHook ];
propagatedBuildInputs = [ python3.pkgs.pyside2 ];
2023-08-05 14:18:43 +00:00
buildInputs = [ graphviz qtbase qttools qtsvg qtwebengine rizin python3 ];
cmakeFlags = [
"-DCUTTER_USE_BUNDLED_RIZIN=OFF"
"-DCUTTER_ENABLE_PYTHON=ON"
"-DCUTTER_ENABLE_PYTHON_BINDINGS=ON"
2023-08-05 14:18:43 +00:00
"-DCUTTER_ENABLE_GRAPHVIZ=ON"
];
preBuild = ''
qtWrapperArgs+=(--prefix PYTHONPATH : "$PYTHONPATH")
'';
passthru = rec {
inherit (rizin) plugins;
withPlugins = filter: pkgs.callPackage ./wrapper.nix {
unwrapped = cutter;
inherit rizin;
plugins = filter plugins;
};
};
meta = with lib; {
description = "Free and Open Source Reverse Engineering Platform powered by rizin";
homepage = src.meta.homepage;
license = licenses.gpl3;
maintainers = with maintainers; [ mic92 dtzWill ];
};
}; in cutter