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-core" {= "2.0.2"} 21 "opam-file-format" {>= "2.0.0~rc2" & < "2.1.1"} 22 "dune" {>= "1.2.1"} 23] 24build: [ 25 ["env" "CI=" "./configure" "--disable-checks" "--prefix" prefix] 26 [make "%{name}%.install"] 27] 28dev-repo: "git+https://github.com/ocaml/opam.git" 29url { 30 src: "https://github.com/ocaml/opam/archive/2.0.2.tar.gz" 31 checksum: [ 32 "md5=b9536b57408632daed491bae0eea947a" 33 "sha512=5c30ec0a09981860453972a351e27f6e882f023041514ecdc48702de40aa770d3e54931dfb2f9e8070f4233fd5e9bf5bfae6b2797b1b2068a49cab9f5784bafc" 34 ] 35} 36synopsis: "Format library for opam 2.0" 37description:""" 38opam 2.0 development libraries 39 40Definition of opam datastructures and its file interface. 41""" 42build-env: [ 43 [CI = ""] 44]