this repo has no description
1opam-version: "2.0" 2synopsis: "Minimal desktop calculator for timestamps" 3description: """ 4TCalc implements a minimal desktop calculator that in addition to 5floating point numbers recognises durations in hh:min:sec format and 6converts them to seconds. This can simplify time-based calculations.""" 7maintainer: "Christian Lindig <lindig@gmail.com>" 8authors: "Christian Lindig <lindig@gmail.com>" 9license: "Unlicense" 10homepage: "https://github.com/lindig/tcalc" 11bug-reports: "https://github.com/lindig/tcalc/issues" 12depends: [ 13 "dune" {>= "2.0"} 14 "ocaml" {>= "4.08.0"} 15 "linenoise" {>= "1.3.1"} 16] 17build: ["dune" "build" "-p" name "-j" jobs] 18dev-repo: "git+https://github.com/lindig/tcalc.git" 19url { 20 src: 21 "https://github.com/lindig/tcalc/releases/download/1.0.1/tcalc-1.0.1.tbz" 22 checksum: [ 23 "sha256=ca4ad22224da943592779fbba8d29792a5ef0b9474bdfd5cbf36cb1e0de092ef" 24 "sha512=a8d9f197eb2fa85ac9b1c5c46fb6c8719f4c85108a0be1071f4f7b1a4b73f0b890937e1f7516efa7058e30f360cecfb6d348448048eb23d14b8f425217009538" 25 ] 26} 27x-commit-hash: "27a4ac80dfa73f930f9febc50831116ceae678b6"