this repo has no description
1opam-version: "2.0" 2synopsis: "A parser for FIT 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.0.4"} 18 "angstrom" {>= "0.15.0"} 19 "ezjsonm" {>= "1.2.0"} 20 "rresult" {>= "0.6.0"} 21 "ISO8601" {>= "0.2.6"} 22] 23build: ["dune" "build" "-p" name "-j" jobs] 24dev-repo: "git+https://github.com/lindig/fit.git" 25url { 26 src: "https://github.com/lindig/fit/releases/download/1.0.2/fit-1.0.2.tbz" 27 checksum: [ 28 "sha256=692faf7156994c7ff9ea84c668f6d37d7e5a5ac0a4f7dacfb4c19ed66193208f" 29 "sha512=a989fac0c41b5f627f3d1547e3deb941107dcd34d9310d35cc40da797ce4bfc9dd982ba69d5e192c989791f2783194b325be701d52f9b743a05078add24c9e84" 30 ] 31} 32x-commit-hash: "e61a30c75c48b7643cd7074e73f7f5f2beddb929"