this repo has no description
1opam-version: "2.0" 2synopsis: "Core library for opam 2.2" 3description: 4 "Small standard library extensions, and generic system interaction modules used by opam." 5maintainer: "opam-devel@lists.ocaml.org" 6authors: [ 7 "David Allsopp <david@tarides.com>" 8 "Vincent Bernardoff <vb@luminar.eu.org>" 9 "Raja Boujbel <raja.boujbel@ocamlpro.com>" 10 "Kate Deplaix <kit.ty.kate@disroot.org>" 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] 20license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 21homepage: "https://opam.ocaml.org" 22bug-reports: "https://github.com/ocaml/opam/issues" 23depends: [ 24 "ocaml" {>= "4.08.0" & (os != "win32" | < "5.0")} 25 "base-unix" 26 "base-bigarray" 27 "ocamlgraph" 28 "re" {>= "1.9.0"} 29 "dune" {>= "2.0.0"} 30 "sha" {>= "1.13"} 31 "jsonm" 32 "swhid_core" 33 "uutf" 34] 35conflicts: ["extlib-compat"] 36build: [ 37 ["./configure" "--disable-checks" "--prefix" prefix] 38 ["dune" "build" "-p" name "-j" jobs] 39] 40dev-repo: "git+https://github.com/ocaml/opam.git" 41url { 42 src: "https://github.com/ocaml/opam/archive/refs/tags/2.2.0-alpha.tar.gz" 43 checksum: [ 44 "md5=6a69d82228899f73c5e3c04a3fb590f3" 45 "sha512=b7899244ab620213f2997409c9d8ac63e1a7ba99ff36abdd0acf41ae545ca7e0534e5e2f6c01a9700c10abf2df4f07944cc64fb5dd315a566f6c5b6b19464729" 46 ] 47} 48available: opam-version >= "2.1.0" 49flags: avoid-version 50x-maintained: false