fix opam file and add install steps to README

This commit is contained in:
rmanseau 2023-11-20 12:24:23 -08:00
parent 705c9e9a7c
commit f775ed645b
No known key found for this signature in database
GPG Key ID: 060BE2D43CFAB17A
3 changed files with 29 additions and 1 deletions

6
README.md Normal file
View File

@ -0,0 +1,6 @@
## 2022 AOC problems in Ocaml
```sh
$ opam switch create . --deps-only -y
$ dune build
```

View File

@ -12,6 +12,16 @@ bug-reports: "https://github.com/username/reponame/issues"
depends: [
"ocaml"
"dune" {>= "3.10"}
"re"
"containers"
"iter"
"dune-site"
"angstrom"
"ppx_deriving"
"ppx_deriving_hash"
"ppx_regexp"
"ppx_expect"
"ppx_inline_test"
"odoc" {with-doc}
]
build: [

View File

@ -21,7 +21,19 @@
(name aoc)
(synopsis "A short synopsis")
(description "A longer description")
(depends ocaml dune)
(depends
ocaml
dune
re
containers
iter
dune-site
angstrom
ppx_deriving
ppx_deriving_hash
ppx_regexp
ppx_expect
ppx_inline_test)
(sites (lib inputs))
(tags
(topics "to describe" your project)))