this repo has no description
1opam-version: "2.0" 2synopsis: "Core library for opam 2.1" 3license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 4description: """ 5Small standard library extensions, and generic system interaction modules used by opam. 6""" 7maintainer: "opam-devel@lists.ocaml.org" 8authors: [ 9 "Vincent Bernardoff <vb@luminar.eu.org>" 10 "Raja Boujbel <raja.boujbel@ocamlpro.com>" 11 "Roberto Di Cosmo <roberto@dicosmo.org>" 12 "Thomas Gazagnaire <thomas@gazagnaire.org>" 13 "Louis Gesbert <louis.gesbert@ocamlpro.com>" 14 "Fabrice Le Fessant <Fabrice.Le_fessant@inria.fr>" 15 "Anil Madhavapeddy <anil@recoil.org>" 16 "Guillem Rieu <guillem.rieu@ocamlpro.com>" 17 "Ralf Treinen <ralf.treinen@pps.jussieu.fr>" 18 "Frederic Tuong <tuong@users.gforge.inria.fr>" 19] 20homepage: "https://opam.ocaml.org/" 21bug-reports: "https://github.com/ocaml/opam/issues" 22dev-repo: "git+https://github.com/ocaml/opam.git" 23build: [ 24 ["./configure" "--disable-checks" "--prefix" prefix] 25 ["dune" "build" "-p" name "-j" jobs] 26] 27depends: [ 28 "ocaml" {>= "4.02.3" & (os != "win32" | < "5.0")} 29 "base-unix" 30 "base-bigarray" 31 "ocamlgraph" 32 "re" {>= "1.9.0"} 33 "dune" {>= "1.5.0"} 34 "cppo" {build & >= "1.1.0"} 35] 36conflicts: "extlib-compat" 37url { 38 src: "https://github.com/ocaml/opam/archive/2.1.0-beta4.tar.gz" 39 checksum: [ 40 "md5=c8b674ab0803330a1daaa241b067c7e3" 41 "sha512=d9ee987a173a013a40a2ab1765f7e2d71bdc1b191e868ec99f4b60e9b6792b1850894a484b9770ae7fb4a540a9fd3f2417506701924f45430a2a31125ba5784f" 42 ] 43} 44x-maintained: false