this repo has no description
1opam-version: "2.0"
2synopsis: "Opam solver using 0install backend using the CUDF interface"
3description: """
4Opam's default solver is designed to maintain a set of packages
5over time, minimising disruption when installing new programs and
6finding a compromise solution across all packages.
7
8In many situations (e.g. CI, local roots or duniverse builds) this
9is not necessary, and we can get a solution much faster by using
10a different algorithm.
11
12This package uses 0install's solver algorithm with opam packages using
13the CUDF interface.
14"""
15license: "ISC"
16maintainer: ["talex5@gmail.com"]
17authors: ["talex5@gmail.com"]
18homepage: "https://github.com/talex5/opam-0install-solver"
19doc: "https://talex5.github.io/opam-0install-solver/"
20bug-reports: "https://github.com/talex5/opam-0install-solver/issues"
21depends: [
22 "dune" {>= "2.0"}
23 "fmt"
24 "cmdliner"
25 "opam-state"
26 "cudf"
27 "ocaml" {>= "4.08.0"}
28 "0install-solver"
29]
30build: [
31 ["dune" "subst"] {dev}
32 [
33 "dune"
34 "build"
35 "-p"
36 name
37 "-j"
38 jobs
39 "@install"
40 "@runtest" {with-test}
41 "@doc" {with-doc}
42 ]
43]
44dev-repo: "git+https://github.com/talex5/opam-0install-solver.git"
45url {
46 src:
47 "https://github.com/ocaml-opam/opam-0install-solver/releases/download/v0.2/opam-0install-cudf-v0.2.tbz"
48 checksum: [
49 "sha256=78591f054e66234169337530ab3eb2ee0e8a8ba13b9fc5f221aff6f717df9aab"
50 "sha512=f9bfeaea27b250d399d5df59dc6cd9c1db32795392c118dfd343c4e7a2187702fce15da67511ade544a3584797b8b5459815fa18b38f5ae4a14d44cd940759bf"
51 ]
52}