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 ];
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
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 useX11 [ gtkdialog vte gtk2 ]
|
||||||
++ optional rubyBindings [ ruby ]
|
++ optional rubyBindings [ ruby ]
|
||||||
++ optional pythonBindings [ python3 ]
|
++ optional pythonBindings [ python3 ]
|
||||||
++ optional luaBindings [ lua ];
|
++ optional luaBindings [ lua ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
# radare2 exposes r_lib which depends on these libraries
|
||||||
|
file # for its list of magic numbers (`libmagic`)
|
||||||
|
libzip
|
||||||
|
xxHash
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "unix-like reverse engineering framework and commandline tools";
|
description = "unix-like reverse engineering framework and commandline tools";
|
||||||
homepage = http://radare.org/;
|
homepage = http://radare.org/;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user