this repo has no description
1opam-version: "2.0" 2maintainer: "Hannes Mehnert <hannes@mehnert.org>" 3authors: "Hannes Mehnert <hannes@mehnert.org>" 4license: "BSD-2-Clause" 5homepage: "https://github.com/hannesm/conex" 6doc: "https://hannesm.github.io/conex/doc" 7bug-reports: "https://github.com/hannesm/conex/issues" 8depends: [ 9 "ocaml" {>= "4.05.0"} 10 "dune" 11 "alcotest" {with-test} 12 "cmdliner" 13 "conex" {= version} 14 "cstruct" {>= "1.6.0"} 15 "nocrypto" {>= "0.5.4"} 16 "x509" {>= "0.7.0" & < "0.10.0"} 17 "logs" 18 "fmt" 19 "rresult" 20] 21build: [ 22 ["dune" "subst"] {dev} 23 ["dune" "build" "-p" name "-j" jobs] 24 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 25] 26dev-repo: "git+https://github.com/hannesm/conex.git" 27synopsis: "Establishing trust in community repositories: crypto provided via nocrypto" 28description: """ 29Conex is a system based on [TUF](https://theupdateframework.github.io/) to 30establish trust in community repositories. Since opam2, the required hooks 31are present. 32 33This package uses the crypto primitives provided by nocrypto. 34""" 35url { 36 src: 37 "https://github.com/hannesm/conex/releases/download/v0.11.0/conex-v0.11.0.tbz" 38 checksum: [ 39 "sha256=9b64ab189a68ebb37daed618ce0c201f082469f4b4efa8cc9099442a169d924b" 40 "sha512=30caad9a0a8d45d24933652733349e251c0e8decb6ac4c7de18fc4ae8a621865f8af5b2d02a5c9fcca0cc122e6a443ba91f2f7a350f729633923f9c1b5cf913d" 41 ] 42} 43flags: deprecated 44x-maintenance-intent: ["(none)"]