this repo has no description
1opam-version: "2.0"
2synopsis: "Arbitrary-precision floating-point decimal library"
3description: """
4Arbitrary-precision floating-point decimal library ported from
5the Python decimal module."""
6maintainer: ["Yawar Amin <yawar.amin@gmail.com>"]
7authors: ["Yawar Amin <yawar.amin@gmail.com>"]
8license: "PSF-2.0"
9homepage: "https://github.com/yawaramin/ocaml-decimal"
10doc: "https://yawaramin.github.io/ocaml-decimal/api"
11bug-reports: "https://github.com/yawaramin/ocaml-decimal/issues"
12depends: [
13 "dune" {>= "2.7"}
14 "angstrom" {>= "0.15.0" & < "1.0.0" & with-test}
15 "ocaml" {>= "4.08.0"}
16 "zarith" {>= "1.10" & < "2.0.0"}
17 "odoc" {with-doc}
18]
19build: [
20 ["dune" "subst"] {dev}
21 [
22 "dune"
23 "build"
24 "-p"
25 name
26 "-j"
27 jobs
28 "@install"
29 "@runtest" {with-test}
30 "@doc" {with-doc}
31 ]
32]
33dev-repo: "git+https://github.com/yawaramin/ocaml-decimal.git"
34available:
35 arch = "arm64" | arch = "x86_64"
36x-commit-hash: "2907175c02ca1bb117ee9703b8d642b721a3d6e8"
37url {
38 src:
39 "https://github.com/yawaramin/ocaml-decimal/releases/download/v0.2.1/decimal-v0.2.1.tbz"
40 checksum: [
41 "sha256=fe081bcba3a1194a44466b2664f6603ff2f440b0aa76de4bffd6ab5e469f98c7"
42 "sha512=aeaf5310eac931ad6daa20a1db4e4827f066a0b3bb430493d491c50d630e46d6cd9b090c281b915f93c30da92b10859519666c6c42bf6a580d2b146e02bb4a5a"
43 ]
44}