this repo has no description
1opam-version: "2.0" 2maintainer: ["maintenance@identity-function.com"] 3homepage: "https://github.com/yomimono/ocaml-certify" 4dev-repo: "git+https://github.com/yomimono/ocaml-certify.git" 5bug-reports: "https://github.com/yomimono/ocaml-certify/issues" 6doc: "https://yomimono.github.io/ocaml-certify/doc" 7synopsis: "CLI utilities for simple X509 certificate manipulation" 8authors: [ 9 "Mindy Preston" 10] 11tags: ["org:mirage"] 12 13build: [ 14 [ "dune" "build" "-p" name "-j" jobs ] 15 [ "env" "CERTDIR=tmp" "KEYDIR=tmp" "./test/test.sh" ] {with-test} 16] 17depends: [ 18 "dune" {>= "1.0"} 19 "nocrypto" {>= "0.5.4"} 20 "x509" {>= "0.8.0" & < "0.9.0"} 21 "cstruct" {>= "3.2.0"} 22 "ptime" 23 "ocaml" {>= "4.04.2"} 24 "cmdliner" {>= "1.0.0"} 25 "conf-openssl" {with-test} 26] 27description: """ 28`certify` is a small selection of useful utilities for manipulating X509 certificates and public keys. It uses the mirleft organization's x509, tls, and nocrypto libraries. 29 30Three subcommands to `certify` are provided: 31* `certify csr`: make a certificate signing request 32* `certify selfsign`: make a self-signed certificate 33* `certify sign`: sign a certificate 34""" 35url { 36 src: 37 "https://github.com/yomimono/ocaml-certify/releases/download/v0.3.2/certify-v0.3.2.tbz" 38 checksum: [ 39 "sha256=5460485110d0e3ce99bcab80514111a717e6264394bef80d1285352bbfa4b0b1" 40 "sha512=86e5199666e669088cb924ccd2c58f914cceb5c7bf0c2c7bf4742aa4eca785a2b7507a8c9308d401a553a298aba67b39e15072b64b600aef059f469fc9e43d87" 41 ] 42}