this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/base" 5bug-reports: "https://github.com/janestreet/base/issues" 6dev-repo: "git+https://github.com/janestreet/base.git" 7license: "Apache-2.0" 8synopsis: "Virtual package for enabling native int63 support in Base" 9description: """ 10`base-native-int63` is just a virtual OPAM package that determines 11whether `Int63.t` in the Base library is exposed as a `private int` on 1264 bit sytems or as an abstract type whose implementation is chosen at 13runtime. 14 15If you install this package, operations on `Base.Int63.t` values will 16be faster as the compiler will be able to generate optimized 17code. However, you won't be able to use the generated byte-code with 18js_of_ocaml.""" 19depends: ["ocaml"] 20extra-source "base-native-int63.install" { 21 src: 22 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/base-native-int63/base-native-int63.install" 23 checksum: [ 24 "sha256=cb154f04b1afccaa7a4ca6e7603ccb1114066c7d4dffa98b8d7ab9d48dbd925f" 25 "md5=a03d20fcd54d7277982caf03b05354fa" 26 ] 27} 28extra-source "META" { 29 src: 30 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/base-native-int63/META.0.1" 31 checksum: [ 32 "sha256=b1da7f6b25d6c29fefc27864631a463dc087d379410f79d74e549e15c711fe3e" 33 "md5=7c03e6330d3d5c03825bd7db4826e43f" 34 ] 35}