this repo has no description
1opam-version: "2.0"
2synopsis: "A CSS parser written in OCaml"
3description: "Parses a CSS Level 3 string and produces an AST."
4maintainer: ["alessandro.strada@gmail.com"]
5authors: ["Alessandro Strada"]
6license: "MIT"
7homepage: "https://github.com/astrada/ocaml-css-parser"
8bug-reports: "https://github.com/astrada/ocaml-css-parser/issues"
9depends: [
10 "alcotest" {with-test}
11 "dune" {>= "2.4"}
12 "menhir" {>= "20200211"}
13 "sedlex" {>= "2.0" & < "2.4"}
14]
15build: [
16 ["dune" "subst"] {dev}
17 [
18 "dune"
19 "build"
20 "-p"
21 name
22 "-j"
23 jobs
24 "@install"
25 "@runtest" {with-test}
26 "@doc" {with-doc}
27 ]
28]
29dev-repo: "git+https://github.com/astrada/ocaml-css-parser.git"
30url {
31 src: "https://github.com/astrada/ocaml-css-parser/archive/v0.2.3.tar.gz"
32 checksum: [
33 "sha256=fe81c0f607feb68cc9e80c8a82edf205c0f18ed8be21a0dcc1b6aa10153cbc13"
34 "md5=bb422eaf04d524fda80a5a50ab0466f3"
35 ]
36}