this repo has no description
1opam-version: "2.0" 2maintainer: "contact@tezos.com" 3authors: [ "Tezos devteam" ] 4homepage: "https://www.tezos.com/" 5bug-reports: "https://gitlab.com/tezos/tezos/issues" 6dev-repo: "git+https://gitlab.com/tezos/tezos.git" 7license: "MIT" 8depends: [ 9 "dune" { >= "2.5" } 10 "dune" {with-test & < "3.0"} 11 "ocaml" { >= "4.8.0" } 12 "hex" { >= "1.3.0" } 13 "lwt" { >= "5.4.0" } 14 "zarith" 15 "ppx_inline_test" 16 "bigstring" { with-test } 17 "lwt_log" { with-test } 18 "alcotest" { with-test & >= "1.1.0" } 19 "alcotest-lwt" { with-test & >= "1.1.0" } 20 "tezos-test-helpers" { with-test & = version } 21] 22build: [ 23 ["rm" "-r" "vendors"] 24 ["dune" "build" "-p" name "-j" jobs] 25 ["mv" "src/lib_stdlib/%{name}%.install" "./"] 26 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 27] 28synopsis: "Tezos: yet-another local-extension of the OCaml standard library" 29 30url { 31 src: "https://gitlab.com/tezos/tezos/-/archive/v10.2/tezos-v10.2.tar.bz2" 32 checksum: [ 33 "sha256=6b33e0549574c89a63538c94ce5555dd141e3c0fb5d934abff07d702fa3244d2" 34 "sha512=681a197baabec6e2f806871d43490382243207518f8fcf932741cd314d8717e46db2b6a5adc222f8726083a5dd911083b4931b7e878ab815f8f1a32763d1bf93" 35 ] 36}