-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
opam
42 lines (40 loc) · 1.45 KB
/
opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
opam-version: "2.0"
maintainer: ["maintenance@identity-function.com"]
homepage: "https://github.com/yomimono/ocaml-certify"
dev-repo: "git+https://github.com/yomimono/ocaml-certify.git"
bug-reports: "https://github.com/yomimono/ocaml-certify/issues"
doc: "https://yomimono.github.io/ocaml-certify/doc"
synopsis: "CLI utilities for simple X509 certificate manipulation"
authors: [
"Mindy Preston"
]
tags: ["org:mirage"]
build: [
[ "dune" "build" "-p" name "-j" jobs ]
[ "env" "CERTDIR=tmp" "KEYDIR=tmp" "./test/test.sh" ] {with-test}
]
depends: [
"dune" {>= "1.0"}
"nocrypto" {>= "0.5.4"}
"x509" {= "0.7.0"}
"cstruct" {>= "3.2.0"}
"ptime"
"ocaml" {>= "4.04.2"}
"cmdliner" {>= "1.0.0"}
"conf-openssl" {with-test}
]
description: """
`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.
Three subcommands to `certify` are provided:
* `certify csr`: make a certificate signing request
* `certify selfsign`: make a self-signed certificate
* `certify sign`: sign a certificate
"""
url {
src:
"https://github.com/yomimono/ocaml-certify/releases/download/v0.3.0/certify-v0.3.0.tbz"
checksum: [
"sha256=67b0bb89be2fe42c0901ad18f8cd7d78cb7cc54ad7391054fa0f521e9940bd35"
"sha512=e7b4ee48330e03f2a83019f54244ec467649c3c69c836892f36a53e1249fe809787cf43681b0e9c2cb2066805d53aaf82ac26cd58251100461a203da6e08d1aa"
]
}