this repo has no description
1opam-version: "2.0"
2maintainer: "ygrek <ygrek@autistici.org>"
3authors: ["ygrek <ygrek@autistici.org>"]
4homepage: "https://github.com/ygrek/ocaml-bpf"
5doc: "https://ygrek.org/p/ocaml-bpf/api/"
6license: "BSD-3-Clause"
7dev-repo: "git+https://github.com/ygrek/ocaml-bpf.git"
8bug-reports: "https://github.com/ygrek/ocaml-bpf/issues"
9tags: ["org:ygrek"]
10depends: [
11 "ocaml" {>= "4.02.0"}
12 "ocamlfind" {build}
13 "ocamlbuild" {build}
14 "topkg" {build}
15 "ppx_deriving"
16]
17build: [
18 ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{pinned}%"]
19 ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{pinned}%" "--tests" "true"]
20 {with-test}
21 ["ocaml" "pkg/pkg.ml" "test"] {with-test}
22]
23synopsis: "Embedded eBPF assembler"
24description: """
25Generate BPF programs directly from OCaml, for use with Linux kernel
26socket/seccomp/event filters or to generate machine code with ubpf JIT for userspace."""
27url {
28 src: "https://ygrek.org/p/release/ocaml-bpf/bpf-0.1.tbz"
29 checksum: [
30 "sha256=94d602c50c9503d9e20f210ab3f0d49ced27f8c6a945dc6fd8f9135c26d420e5"
31 "md5=fe1e6b23e9f9786bd6396754de5c1e5c"
32 ]
33 mirrors:
34 "https://github.com/ygrek/ocaml-bpf/releases/download/0.1/bpf-0.1.tbz"
35}