this repo has no description
1opam-version: "2.0"
2synopsis: "ASCII-based library for generating and querying source code"
3description:
4 "Programming languages and DSLs have distinct coding conventions. The early versions of this package help convert identifiers between the different conventions (camel case, kebab case, etc.)."
5maintainer: "opensource+dkml@support.diskuv.com"
6authors: "Diskuv, Inc. <opensource+dkml@support.diskuv.com>"
7license: "Apache-2.0"
8homepage: "https://gitlab.com/dkml/base/sourcecode"
9doc: "https://gitlab.com/dkml/base/sourcecode/-/blob/main/README.md"
10bug-reports: "https://gitlab.com/dkml/base/sourcecode/-/issues"
11depends: [
12 "dune" {>= "3.8"}
13 "ocaml" {>= "4.12.1"}
14 "tezt" {with-test & >= "3.1.0"}
15 "odoc" {with-doc}
16]
17build: [
18 ["dune" "subst"] {dev}
19 [
20 "dune"
21 "build"
22 "-p"
23 name
24 "-j"
25 jobs
26 "@install"
27 "@runtest" {with-test}
28 "@doc" {with-doc}
29 ]
30]
31dev-repo: "git+https://gitlab.com/dkml/base/sourcecode.git"
32url {
33 src:
34 "https://gitlab.com/dkml/base/sourcecode/-/archive/0.1.0/sourcecode-0.1.0.tar.gz"
35 checksum: [
36 "md5=82d49afcaac09811ac4cb699132d0aa9"
37 "sha512=65da8781baf17546a1185db017499b761896569fff5649223ec9966c166e053c39d4072e9386a5ebfec6fdd9a3fc4bfa1a920705881e81e03069c8e6d4f5490a"
38 ]
39}