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.2.tbz" 29 checksum: [ 30 "sha256=264b1841507ca9ca3f592acc7ef9a284f0a5ae0263d52cd1990ece1fe07aecae" 31 "md5=f1df7018dd45fc057da8c437f1a86270" 32 ] 33 mirrors: 34 "https://github.com/ygrek/ocaml-bpf/releases/download/0.2/bpf-0.2.tbz" 35}