mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: binsec: Enable support for z3-builtin solver.
This is much faster than an external solver as it doesn't rely on forking an external solver and instead uses the API provided by ocaml-z3. This feature was added in binsec release 0.9.1. * gnu/packages/ocaml.scm (binsec)[propagated-inputs]: Add ocaml-z3. * gnu/packages/ocaml.scm (binsec)[native-inputs]: Add z3. Change-Id: I246fd1a13e8c9d6a6764608281a2bea5ac0a054b Signed-off-by: Julien Lepiller <julien@lepiller.eu>
This commit is contained in:
parent
67f5f23c88
commit
e10da6bff8
1 changed files with 3 additions and 2 deletions
|
@ -1470,14 +1470,15 @@ Knuth’s LR(1) parser construction technique.")
|
|||
(wrap-program (string-append #$output "/bin/" "binsec")
|
||||
`("OCAMLPATH" ":" prefix ,ocamlpath))))))))
|
||||
(inputs (list bash-minimal))
|
||||
(native-inputs (list gmp ocaml-qcheck ocaml-ounit2))
|
||||
(native-inputs (list gmp ocaml-qcheck ocaml-ounit2 z3))
|
||||
(propagated-inputs (list dune-site
|
||||
ocaml-base
|
||||
ocaml-menhir
|
||||
ocaml-graph
|
||||
ocaml-zarith
|
||||
ocaml-grain-dypgen
|
||||
ocaml-toml))
|
||||
ocaml-toml
|
||||
ocaml-z3))
|
||||
(synopsis "Binary-level analysis platform")
|
||||
(description
|
||||
"BINSEC is a binary analysis platform which implements analysis
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue