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/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.0"} 23 "fmt" 24 "cmdliner" 25 "cudf" 26 "ocaml" {>= "4.08.0"} 27 "0install-solver" 28] 29build: [ 30 ["dune" "subst"] {dev} 31 [ 32 "dune" 33 "build" 34 "-p" 35 name 36 "-j" 37 jobs 38 "@install" 39 "@runtest" {with-test} 40 "@doc" {with-doc} 41 ] 42] 43dev-repo: "git+https://github.com/ocaml-opam/opam-0install-solver.git" 44url { 45 src: 46 "https://github.com/ocaml-opam/opam-0install-solver/releases/download/v0.3/opam-0install-cudf-v0.3.tbz" 47 checksum: [ 48 "sha256=26cacd296641278384dc7357560e3b13aca1269d406c9fd0c5f0b1132d8ccdf8" 49 "sha512=9d0a51adfecd143b575cb1a0615c527e19ba4748dbe338c442c1974ca4707e39a56de96e5c937df53cb185f442914646226b3ec0a4df50303e1d1a3eed695fa2" 50 ] 51} 52x-commit-hash: "c45ca464ec9857742f00a5d299994bf43cfdd3f8"