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 "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" 25available: arch != "x86_32" & arch != "arm32" & os-family != "bsd" 26url { 27 src: "https://github.com/lindig/fit/releases/download/1.1.0/fit-1.1.0.tbz" 28 checksum: [ 29 "sha256=604f0017399b1164113b099847927927527231220b9cfe58317c1384ccbd667e" 30 "sha512=226915ad724febe85ca2d86c482c49776a0beed01e3a6861479de86bd19eb2aedf05f54fb5aa18eea84d5739062f1f907ba5b0d3359ada6113ea9d177fbc88f3" 31 ] 32} 33x-commit-hash: "4247e22baa26c825abc4d05b54afaac03bad6866"