mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add binsec.
* gnu/packages/ocaml.scm (binsec): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu> Change-Id: Ifc57720f97f9ffa8c3558e3cd2d741cdbf73ee3a
This commit is contained in:
parent
4221b50acb
commit
16d2be6414
1 changed files with 33 additions and 0 deletions
|
@ -1469,6 +1469,39 @@ (define-public lablgtk
|
||||||
libpanel, librsvg and quartz.")
|
libpanel, librsvg and quartz.")
|
||||||
(license license:lgpl2.1)))
|
(license license:lgpl2.1)))
|
||||||
|
|
||||||
|
(define-public binsec
|
||||||
|
(package
|
||||||
|
(name "binsec")
|
||||||
|
(version "0.8.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/binsec/binsec")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0j6lwj20jaq0702v2fqvsrax1400zqbvz5q2cmjqhvrjzcfcl0kr"))))
|
||||||
|
(build-system dune-build-system)
|
||||||
|
(native-inputs (list gmp ocaml-qcheck ocaml-ounit2))
|
||||||
|
(propagated-inputs (list dune-site
|
||||||
|
ocaml-base
|
||||||
|
ocaml-menhir
|
||||||
|
ocaml-graph
|
||||||
|
ocaml-zarith
|
||||||
|
ocaml-grain-dypgen
|
||||||
|
ocaml-toml))
|
||||||
|
(synopsis "Binary-level analysis platform")
|
||||||
|
(description
|
||||||
|
"BINSEC is a binary analysis platform which implements analysis
|
||||||
|
techniques such as symbolic execution. The goal of BINSEC is to improve
|
||||||
|
software security at the binary level through binary analysis. BINSEC
|
||||||
|
is a research tool which relies on prior work in binary code analysis
|
||||||
|
at the intersection of formal methods, program analysis security and
|
||||||
|
software engineering.")
|
||||||
|
(home-page "https://binsec.github.io/")
|
||||||
|
(license license:lgpl2.1)))
|
||||||
|
|
||||||
(define-public unison
|
(define-public unison
|
||||||
(package
|
(package
|
||||||
(name "unison")
|
(name "unison")
|
||||||
|
|
Loading…
Reference in a new issue