Remove breakpointHook

This commit is contained in:
bad 2022-07-28 18:52:09 +02:00
parent 38f68027f4
commit 61df486818

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchgit, pkg-config, cmake, openssl, rizin, breakpointHook }: stdenv.mkDerivation {
{ lib, stdenv, fetchgit, pkg-config, cmake, openssl, rizin }: stdenv.mkDerivation {
name = "rz-ghidra";
src = fetchgit {
url = "https://github.com/rizinorg/rz-ghidra.git";
@ -8,5 +8,5 @@
};
mesonFlags = [ "-Djsc_folder=/build/source/" ];
buildInputs = [ rizin cmake openssl ];
nativeBuildInputs = [ pkg-config breakpointHook ];
nativeBuildInputs = [ pkg-config ];
}