mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: radare2: Add more inputs.
* gnu/packages/engineering.scm (radare2)[arguments]: Add ‘--with-sysxxhash’ to #:configure-flags. [inputs]: Add libuv. [propagated-inputs]: Add xxhash.
This commit is contained in:
parent
5507ff8e85
commit
ecc8cd984e
1 changed files with 12 additions and 2 deletions
|
@ -61,6 +61,7 @@ (define-module (gnu packages engineering)
|
|||
#:use-module (gnu packages commencement)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages curl)
|
||||
#:use-module (gnu packages digest)
|
||||
#:use-module (gnu packages documentation)
|
||||
#:use-module (gnu packages flex)
|
||||
#:use-module (gnu packages fontutils)
|
||||
|
@ -82,6 +83,7 @@ (define-module (gnu packages engineering)
|
|||
#:use-module (gnu packages image)
|
||||
#:use-module (gnu packages image-processing)
|
||||
#:use-module (gnu packages imagemagick)
|
||||
#:use-module (gnu packages libevent)
|
||||
#:use-module (gnu packages linux) ;FIXME: for pcb
|
||||
#:use-module (gnu packages m4)
|
||||
#:use-module (gnu packages maths)
|
||||
|
@ -1354,17 +1356,25 @@ (define-public radare2
|
|||
(mkdir-p (string-append (assoc-ref outputs "out") "/lib"))
|
||||
#t)))
|
||||
#:configure-flags
|
||||
(list "--with-sysmagic" "--with-syszip" "--with-syscapstone"
|
||||
"--with-openssl" "--with-rpath")
|
||||
(list "--with-openssl"
|
||||
"--with-rpath"
|
||||
"--with-syscapstone"
|
||||
"--with-sysmagic"
|
||||
"--with-syszip"
|
||||
"--with-sysxxhash")
|
||||
#:make-flags
|
||||
(list "CC=gcc")))
|
||||
;; TODO: Add gmp and libzip and make the build system actually find them.
|
||||
(inputs
|
||||
`(("capstone" ,capstone)
|
||||
("libuv" ,libuv)
|
||||
("openssl" ,openssl)
|
||||
("zip" ,zip)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(propagated-inputs
|
||||
;; In the Libs: section of r_hash.pc.
|
||||
`(("xxhash" ,xxhash)))
|
||||
(home-page "https://radare.org/")
|
||||
(synopsis "Reverse engineering framework")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue