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""" 15maintainer: ["talex5@gmail.com"] 16authors: ["talex5@gmail.com"] 17license: "ISC" 18homepage: "https://github.com/ocaml-opam/opam-0install-solver" 19doc: "https://ocaml-opam.github.io/opam-0install-solver/" 20bug-reports: "https://github.com/ocaml-opam/opam-0install-solver/issues" 21depends: [ 22 "dune" {>= "2.7"} 23 "cudf" 24 "ocaml" {>= "4.08.0"} 25 "0install-solver" 26 "odoc" {with-doc} 27] 28build: [ 29 ["dune" "subst"] {dev} 30 [ 31 "dune" 32 "build" 33 "-p" 34 name 35 "-j" 36 jobs 37 "@install" 38 "@runtest" {with-test} 39 "@doc" {with-doc} 40 ] 41] 42dev-repo: "git+https://github.com/ocaml-opam/opam-0install-solver.git" 43url { 44 src: 45 "https://github.com/ocaml-opam/opam-0install-solver/releases/download/v0.4.3/opam-0install-cudf-0.4.3.tbz" 46 checksum: [ 47 "sha256=d59e0ebddda58f798ff50ebe213c83893b5a7c340c38c20950574d67e6145b8a" 48 "sha512=f29cd54e31229050b5404e66a915ec4087d0a06de573c6449a459f8a5f831256f5f8584ba4b8c81a21de4b897afad726c795b6483eb7927c754dfd7ed62ab564" 49 ] 50} 51x-commit-hash: "b759d7c1c2f140724020f57599ead9ee394a8f7a"