unikernel-repo/packages/builder-web.0.2.0~dev/opam

68 lines
1.8 KiB
Text
Raw Normal View History

2021-06-09 15:44:18 +00:00
opam-version: "2.0"
maintainer: "Reynir Björnsson <reynir@reynir.dk>"
authors: ["Reynir Björnsson <reynir@reynir.dk>"]
homepage: "https://github.com/roburio/builder-web"
dev-repo: "git+https://github.com/roburio/builder-web.git"
bug-reports: "https://github.com/roburio/builder-web/issues"
license: "ISC"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
2021-08-02 13:43:47 +00:00
["sh" "-ex" "packaging/FreeBSD/create_package.sh"] {os = "freebsd"}
["sh" "-ex" "packaging/debian/create_package.sh"] {os-family = "debian"}
2021-06-09 15:44:18 +00:00
]
depends: [
2022-06-23 10:19:01 +00:00
"ocaml" {>= "4.13.0"}
"dune" {>= "2.7.0"}
2021-11-14 12:57:50 +00:00
"builder" {>= "0.2.0"}
"dream" {= "1.0.0~alpha4"}
2021-11-14 12:57:50 +00:00
"cstruct" {>= "6.0.0"}
2021-06-09 15:44:18 +00:00
"bos"
"hex"
2021-11-14 12:57:50 +00:00
"lwt" {>= "5.3.0"}
"caqti" {>= "1.8.0"}
2021-06-09 15:44:18 +00:00
"caqti-lwt"
"caqti-driver-sqlite3"
"pbkdf"
"mirage-crypto-rng"
"scrypt-kdf"
"opam-core"
2021-11-14 12:57:50 +00:00
"opam-format" {>= "2.1.0"}
"metrics" {>= "0.3.0"}
"metrics-lwt" {>= "0.3.0"}
"metrics-influx" {>= "0.3.0"}
"metrics-rusage" {>= "0.3.0"}
2021-06-09 15:44:18 +00:00
"ipaddr"
2021-11-14 12:57:50 +00:00
"tyxml" {>= "4.3.0"}
2021-06-09 16:03:55 +00:00
"ptime"
"duration"
"mirage-crypto"
"asn1-combinators"
"logs"
2022-03-16 12:25:18 +00:00
"cmdliner" {>= "1.1.0"}
2021-06-09 16:03:55 +00:00
"uri"
2021-11-14 12:57:50 +00:00
"fmt" {>= "0.8.7"}
2021-06-30 12:55:44 +00:00
"omd"
"tar"
2022-02-23 21:13:31 +00:00
"owee"
2022-06-23 10:26:08 +00:00
"solo5-elftool" {>= "0.3.0"}
2022-06-23 10:19:01 +00:00
"decompress"
2022-07-12 15:24:32 +00:00
"alcotest" {with-test}
"ppx_deriving" {with-test}
"ppx_deriving_yojson" {with-test}
2021-06-09 15:44:18 +00:00
]
synopsis: "Web interface for builder"
2021-11-14 12:57:50 +00:00
description: """
Builder-web takes in submissions of builds, typically from [builder](https://github.com/roburio/builder/), and displays the produced artifacts in a way that makes it easy to compare checksums and build status.
Produced binaries can be downloaded and executed.
[builds.robur.coop](https://builds.robur.coop/) itself runs builder-web.
"""
2021-06-09 15:44:18 +00:00
url {
src: "git+https://git.robur.io/robur/builder-web.git"
}