this repo has no description
1opam-version: "2.0" 2maintainer: "opam-devel@lists.ocaml.org" 3license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 4authors: [ 5 "Vincent Bernardoff <vb@luminar.eu.org>" 6 "Raja Boujbel <raja.boujbel@ocamlpro.com>" 7 "Roberto Di Cosmo <roberto@dicosmo.org>" 8 "Thomas Gazagnaire <thomas@gazagnaire.org>" 9 "Louis Gesbert <louis.gesbert@ocamlpro.com>" 10 "Fabrice Le Fessant <Fabrice.Le_fessant@inria.fr>" 11 "Anil Madhavapeddy <anil@recoil.org>" 12 "Guillem Rieu <guillem.rieu@ocamlpro.com>" 13 "Ralf Treinen <ralf.treinen@pps.jussieu.fr>" 14 "Frederic Tuong <tuong@users.gforge.inria.fr>" 15] 16homepage: "https://opam.ocaml.org/" 17bug-reports: "https://github.com/ocaml/opam/issues" 18depends: [ 19 "ocaml" {>= "4.02.3"} 20 "opam-state" {= "2.0.1"} 21 "opam-solver" {= "2.0.1"} 22 "re" {>= "1.7.2"} 23 "cmdliner" {>= "0.9.8" & < "2.0.0"} 24 "jbuilder" {>= "1.0+beta20"} 25] 26build: [ 27 ["./configure" "--disable-checks" "--prefix" prefix] 28 [make "%{name}%.install"] 29] 30dev-repo: "git+https://github.com/ocaml/opam.git" 31url { 32 src: "https://github.com/ocaml/opam/archive/2.0.1.tar.gz" 33 checksum: [ 34 "md5=1e55c234fa09e678e8115a31f3ec2a05" 35 "sha512=d71c362d70a6b6cb9fe54cc43bfbea8079cca05d4721a7dda951196f543a1ff5af81399a246e0cd68bc590c7bdca388d96c7127217ed637261957047ce725516" 36 ] 37} 38synopsis: "Client library for opam 2.0" 39description:""" 40opam 2.0 development libraries 41 42Actions on the opam root, switches, installations, and front-end. 43""" 44build-env: [ 45 [CI = ""] 46]