radare2: add propagated build inputs (#53667)
Fixes the cutter build which was broken when radare2 was moved away from vendored dependencies in #51837.
This commit is contained in:
parent
cb0b629894
commit
8c81099cda
|
@ -75,12 +75,19 @@ let
|
|||
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ file libzip xxHash readline libusb libewf perl zlib openssl libuv ]
|
||||
buildInputs = [ file readline libusb libewf perl zlib openssl libuv ]
|
||||
++ optional useX11 [ gtkdialog vte gtk2 ]
|
||||
++ optional rubyBindings [ ruby ]
|
||||
++ optional pythonBindings [ python3 ]
|
||||
++ optional luaBindings [ lua ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
# radare2 exposes r_lib which depends on these libraries
|
||||
file # for its list of magic numbers (`libmagic`)
|
||||
libzip
|
||||
xxHash
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "unix-like reverse engineering framework and commandline tools";
|
||||
homepage = http://radare.org/;
|
||||
|
|
Loading…
Reference in New Issue