-
Notifications
You must be signed in to change notification settings - Fork 1
/
opam-0install-cudf.opam
32 lines (30 loc) · 1.24 KB
/
opam-0install-cudf.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
opam-version: "2.0"
version: "0.5.0"
synopsis: "Opam solver using 0install backend using the CUDF interface"
description: """
Opam's default solver is designed to maintain a set of packages
over time, minimising disruption when installing new programs and
finding a compromise solution across all packages.
In many situations (e.g. CI, local roots or duniverse builds) this
is not necessary, and we can get a solution much faster by using
a different algorithm.
This package provides a generic solver library which uses 0install's
solver library. The library uses the CUDF library in order to interface
with opam as it is the format common used to talk to all the supported solvers.
"""
maintainer: "Kate <[email protected]>"
authors: "Kate <[email protected]>"
license: "ISC"
homepage: "https://github.com/ocaml-opam/opam-0install-cudf"
doc: "https://ocaml-opam.github.io/opam-0install-cudf/"
bug-reports: "https://github.com/ocaml-opam/opam-0install-cudf/issues"
depends: [
"dune" {>= "2.7"}
"cudf" {>= "0.10"}
"ocaml" {>= "4.08.0"}
"0install-solver" {>= "2.18"}
"alcotest" {with-test}
]
build: ["dune" "build" "-p" name "-j" jobs]
run-test: ["dune" "test" "-p" name "-j" jobs]
dev-repo: "git+https://github.com/ocaml-opam/opam-0install-cudf.git"