From 61df48681819726acdd75e4a1a82716d2c3f60af Mon Sep 17 00:00:00 2001 From: bad Date: Thu, 28 Jul 2022 18:52:09 +0200 Subject: [PATCH] Remove breakpointHook --- rz-ghidra.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rz-ghidra.nix b/rz-ghidra.nix index 4e2d18a..eabf4bd 100644 --- a/rz-ghidra.nix +++ b/rz-ghidra.nix @@ -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 ]; }