File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ # This file is generated by dune, edit dune-project instead
2+ opam-version: "2.0"
3+ synopsis: "Simple library to parse expressions"
4+ description: """
5+ A simple library to parse and evaluate arithmetic expressions that
6+ may include variables. The purpose is for other code to accept an
7+ expression rather than just a literal value. Both float and boolean
8+ expressions are supported."""
9+ maintainer: ["Christian Lindig <
[email protected] >"]
10+ authors: ["Christian Lindig <
[email protected] >"]
11+ license: "Unlicense"
12+ homepage: "https://github.com/lindig/expr"
13+ bug-reports: "https://github.com/lindig/expr/issues"
14+ depends: [
15+ "dune" {>= "2.7"}
16+ "ocaml" {>= "4.08.0"}
17+ "cmdliner" {>= "1.1.0" & < "2.0.0"}
18+ "odoc" {with-doc}
19+ ]
20+ build: [
21+ ["dune" "subst"] {dev}
22+ [
23+ "dune"
24+ "build"
25+ "-p"
26+ name
27+ "-j"
28+ jobs
29+ "@install"
30+ "@runtest" {with-test}
31+ "@doc" {with-doc}
32+ ]
33+ ]
34+ dev-repo: "git+https://github.com/lindig/expr.git"
35+
36+ x-maintenance-intent: ["(latest)"]
37+ url {
38+ src: "https://github.com/lindig/expr/archive/0.5.2.zip"
39+ checksum: [
40+ "sha256=08573601b9080e8097a7c202c0b377ae4ebd58f01adef344df50f3cae27b1daf"
41+ "md5=119a1ea19330b08d7e6bd4210f5fec5c"
42+ ]
43+ }
You can’t perform that action at this time.
0 commit comments