Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions packages/fit/fit.1.4.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A parser for Garmin FIT data files"
description:
"Fit is a library for reading FIT files as they are produced by Garmin and other fitness devices. It comes with a small command-line tool to emit some of that information as JSON, mostly for debugging. Fit is not comprehensive but reads the most important records from a FIT file that contains the actual periodic measurements."
maintainer: ["Christian Lindig <[email protected]>"]
authors: ["Christian Lindig <[email protected]>"]
license: "MIT"
homepage: "https://github.com/lindig/fit"
bug-reports: "https://github.com/lindig/fit/issues"
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "3.0" & >= "3.20"}
"cmdliner" {>= "1.1.0"}
"angstrom" {>= "0.15.0"}
"yojson" {>= "2.1.0"}
"ptime" {>= "1.1.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/lindig/fit.git"

x-maintenance-intent: ["(latest)"]
available: [os-family != "windows" & arch != "x86_32" & arch != "arm32"]

url {
src: "https://github.com/lindig/fit/archive/1.4.0.zip"
checksum: [
"sha256=47f30b76ca5931c315dddaa2e2fbb7736a891a6a7022426f747f6a94b0a881ea"
"md5=a8405ddba007af7070bc0ed7d9fc6646"
]
}
Loading