this repo has no description
1opam-version: "2.0"
2synopsis: "Package dependency solver"
3maintainer: "talex5@gmail.com"
4authors: "zero-install-devel@lists.sourceforge.net"
5homepage: "https://github.com/0install/0install"
6bug-reports: "https://github.com/0install/0install/issues"
7dev-repo: "git+https://github.com/0install/0install.git"
8doc: "https://0install.github.io/0install/"
9build: [
10 ["dune" "build" "-p" name "-j" jobs "@install" "@runtest" {with-test}]
11]
12depends: [
13 "ocaml" {>= "4.08.0"}
14 "dune" {>= "2.5"}
15 "ounit2" {with-test}
16]
17description: """
18A package dependency resolver based on a SAT solver. This was originally
19written for the 0install package manager, but is now generic and is also used
20as a solver backend for opam.
21The SAT solver is based on MiniSat (http://minisat.se/Papers.html) and
22the application to package management is based on OPIUM (Optimal Package
23Install/Uninstall Manager). 0install-solver uses a (novel?) strategy to find
24the optimal solution extremely quickly (even for a SAT-based solver).
25"""
26url {
27 src:
28 "https://github.com/0install/0install/releases/download/v2.17/0install-v2.17.tbz"
29 checksum: [
30 "sha256=1704e5d852bad79ef9f5b5b31146846420270411c5396434f6fe26577f2d0923"
31 "sha512=6ac7f2c8719018414f2b08ab799e641e54c5689a38a85c4014d9f02bc4a14dcdbcd764dec63036fb4b0a0302e26f22d40473aded78b6a08d639849f3e365d42a"
32 ]
33}