nckx pushed a commit to branch master
in repository guix.
commit 5507ff8e850bf443965a8aa03385895714ae02d2
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Mon May 25 21:59:26 2020 +0200
gnu: radare2: Remove unused gmp input.
* gnu/packages/engineering.scm (radare2)[inputs]: Remove gmp.
---
gnu/packages/engineering.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 369110a..96526cb 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -1358,11 +1358,11 @@ bindings for Python, Java, OCaml and more.")
"--with-openssl" "--with-rpath")
#:make-flags
(list "CC=gcc")))
+ ;; TODO: Add gmp and libzip and make the build system actually find them.
(inputs
- `(("openssl" ,openssl)
- ("zip" ,zip)
- ("gmp" ,gmp)
- ("capstone" ,capstone)))
+ `(("capstone" ,capstone)
+ ("openssl" ,openssl)
+ ("zip" ,zip)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(home-page "https://radare.org/")