this repo has no description
1opam-version: "2.0"
2synopsis: "A parser for Garmin FIT data files"
3description: """
4Fit is library for reading FIT files as they are produced by Garmin and
5other fitness devices. It comes with a small command-line tool to emit
6some of that information as JSON, mostly for debugging. Fit is not
7comprehensive but reads the most important records from a FIT file that
8contains the actual periodic measurements."""
9maintainer: ["Christian Lindig <lindig@gmail.com>"]
10authors: ["Christian Lindig <lindig@gmail.com>"]
11license: "MIT"
12homepage: "https://github.com/lindig/fit"
13bug-reports: "https://github.com/lindig/fit/issues"
14depends: [
15 "ocaml" {>= "4.08.0"}
16 "dune" {>= "2.0"}
17 "cmdliner" {>= "1.1.0"}
18 "angstrom" {>= "0.15.0"}
19 "yojson" {>= "2.1.0"}
20 "rresult" {>= "0.6.0"}
21 "ptime" {>= "1.1.0"}
22]
23build: [
24 ["dune" "subst"] {dev}
25 [
26 "dune"
27 "build"
28 "-p"
29 name
30 "-j"
31 jobs
32 "@install"
33 "@runtest" {with-test}
34 "@doc" {with-doc}
35 ]
36]
37available: arch != "x86_32" & arch != "arm32"
38dev-repo: "git+https://github.com/lindig/fit.git"
39url {
40 src: "https://github.com/lindig/fit/releases/download/1.2.0/fit-1.2.0.tbz"
41 checksum: [
42 "sha256=171f88b6ee5fecfb8c0159da9f21692aba9881415a1e41a8a65392080516ff51"
43 "sha512=2826e072ad7fb5cc768c30c2f1ae64e9a7a8008b8b054690f9bbb281c5b833e6d521a4a44f7b8109f37edcf948dcdccb096b374d728cb9fe86298ee6b7df9311"
44 ]
45}
46x-commit-hash: "b137108cc40fa1695fda363baa8c8bd1db07075b"