this repo has no description
1opam-version: "2.0" 2maintainer: "Christophe Troestler <Christophe.Troestler@umons.ac.be>" 3authors: ["Christophe Troestler <Christophe.Troestler@umons.ac.be>"] 4tags: ["sandbox" "bubblewrap"] 5license: "ISC" 6homepage: "https://github.com/Chris00/ocaml-bwrap" 7dev-repo: "git+https://github.com/Chris00/ocaml-bwrap.git" 8bug-reports: "https://github.com/Chris00/ocaml-bwrap/issues" 9doc: "https://Chris00.github.io/ocaml-bwrap/doc" 10build: [ 11 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs] 13 ["dune" "build" "@doc"] {with-doc} 14] 15run-test: [ 16 ["dune" "runtest" "-p" name "-j" jobs] 17] 18depends: [ 19 "ocaml" {>= "4.03"} 20 "dune" 21 "dune-configurator" 22 "cppo" {build} 23 "base-unix" 24 "base-bytes" 25] 26available: [os = "linux"] 27depexts: [ 28 ["bubblewrap"] {os-family = "debian" & os-distribution != "ubuntu"} 29 ["bubblewrap"] {os-distribution = "ubuntu" & os-version >= "17.0"} 30 ["bubblewrap"] {os-distribution = "alpine"} 31 ["bubblewrap"] {os-distribution = "fedora"} 32 ["bubblewrap"] {os-distribution = "rhel"} 33 ["bubblewrap" "epel-release"] {os-distribution = "centos" & os-version >= "7"} 34 ["bubblewrap"] {(os-family = "suse" | os-family = "opensuse") & os-version >= "15"} 35 ["bubblewrap"] {os-distribution = "mageia"} 36] 37synopsis: "Use Bubblewrap to sandbox executables" 38description: """ 39Library using Bubblewrap to execute programs in a sandbox.""" 40url { 41 src: 42 "https://github.com/Chris00/ocaml-bwrap/releases/download/0.1/bwrap-0.1.tbz" 43 checksum: [ 44 "sha256=f01d892b84a703eecb03c571786dcfa3a9a6f512b5797d000cc7721cc52f9df1" 45 "md5=4560cf99611d432d16bd428ca13bfe21" 46 ] 47}