this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[new release] fit (1.2.0)

CHANGES:

* Replace Ezjsonm with Yojson, which is more widely used
* Replace ISO8601 with Ptime

+45
+45
packages/fit/fit.1.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "A parser for Garmin FIT data files" 3 + description: """ 4 + Fit is library for reading FIT files as they are produced by Garmin and 5 + other fitness devices. It comes with a small command-line tool to emit 6 + some of that information as JSON, mostly for debugging. Fit is not 7 + comprehensive but reads the most important records from a FIT file that 8 + contains the actual periodic measurements.""" 9 + maintainer: ["Christian Lindig <lindig@gmail.com>"] 10 + authors: ["Christian Lindig <lindig@gmail.com>"] 11 + license: "MIT" 12 + homepage: "https://github.com/lindig/fit" 13 + bug-reports: "https://github.com/lindig/fit/issues" 14 + depends: [ 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 + ] 23 + build: [ 24 + ["dune" "subst"] {pinned} 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 + ] 37 + dev-repo: "git+https://github.com/lindig/fit.git" 38 + url { 39 + src: "https://github.com/lindig/fit/releases/download/1.2.0/fit-1.2.0.tbz" 40 + checksum: [ 41 + "sha256=171f88b6ee5fecfb8c0159da9f21692aba9881415a1e41a8a65392080516ff51" 42 + "sha512=2826e072ad7fb5cc768c30c2f1ae64e9a7a8008b8b054690f9bbb281c5b833e6d521a4a44f7b8109f37edcf948dcdccb096b374d728cb9fe86298ee6b7df9311" 43 + ] 44 + } 45 + x-commit-hash: "b137108cc40fa1695fda363baa8c8bd1db07075b"