-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
opam
108 lines (103 loc) · 2.75 KB
/
opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
opam-version: "2.0"
synopsis: "Semantic analysis of binary executables"
description: """
BINSEC aims at developing an open-source platform filling the gap between formal
methods over executable code and binary-level security analyses currently used
in the security industry.
The project targets the following applicative domains:
vulnerability analyses
malware comprehension
code protection
binary-level verification
BINSEC is developed at CEA List in scientfic collaboration with Verimag and LORIA.
An overview of some BINSEC features can be found in our SSPREW'17 tutorial."""
maintainer: ["BINSEC <binsec@saxifrage.saclay.cea.fr>"]
authors: [
"Adel Djoudi"
"Benjamin Farinier"
"Chakib Foulani"
"Dorian Lesbre"
"Frédéric Recoules"
"Guillaume Girol"
"Josselin Feist"
"Lesly-Ann Daniel"
"Mahmudul Faisal Al Ameen"
"Manh-Dung Nguyen"
"Mathéo Vergnolle"
"Mathilde Ollivier"
"Matthieu Lemerre"
"Nicolas Bellec"
"Olivier Nicole"
"Richard Bonichon"
"Robin David"
"Sébastien Bardin"
"Soline Ducousso"
"Ta Thanh Dinh"
"Yaëlle Vinçont"
"Yanis Sellami"
]
license: "LGPL-2.1-or-later"
tags: [
"binary code analysis"
"symbolic execution"
"deductive"
"program verification"
"formal specification"
"automated theorem prover"
"plugins"
"abstract interpretation"
"dataflow analysis"
"linking"
"disassembly"
]
homepage: "https://binsec.github.io"
bug-reports: "mailto:binsec@saxifrage.saclay.cea.fr"
depends: [
"dune" {>= "3.0"}
"ocaml" {>= "4.11"}
"menhir" {build & >= "20181113"}
"ocamlgraph" {>= "1.8.5"}
"zarith" {>= "1.4"}
"dune-site"
"grain_dypgen"
"toml" {>= "6"}
"ounit2" {with-test & >= "2"}
"qcheck" {with-test & >= "0.7"}
"ocamlformat" {with-dev-setup & = "0.26.1"}
"odoc" {with-doc}
]
depopts: ["curses" "llvm" "unisim_archisec" "bitwuzla" "bitwuzla-cxx" "z3"]
conflicts: [
"llvm" {< "6.0.0" | >= "16.0.0"}
"bitwuzla" {< "1.0.4"}
"bitwuzla-cxx" {< "0.4"}
"z3" {< "4.8.13"}
"unisim_archisec" {< "0.0.6"}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/binsec/binsec.git"
available: [ arch = "x86_64" | arch = "ppc64" | arch = "arm64" | arch = "sparc64" ]
url {
src:
"https://github.com/binsec/binsec/releases/download/0.9.1/binsec-0.9.1.tbz"
checksum: [
"sha256=a6ccc9c0a756f6056a5bf6a2f602d59690944f4164cc180d0082c36f081e7e94"
"sha512=cd85654f94da9ce8fedab746c557c326821cc7932005337303607e0c52d7caf403655fc1000b34d32f1f2606ab1b3d079b9057346ef0a2f88057e0dd7b412cce"
]
}
x-commit-hash: "395b8a8322c48b7d664af05b601261c28765fe0e"