this repo has no description
1opam-version: "2.0" 2synopsis: "OCaml library hiding stuff from the stdlib" 3description: 4 "Prelude is an OCaml library hiding a lot of stuff from the stdlib to enforce good programming practices." 5maintainer: ["Léo Andrès <contact@ndrs.fr>"] 6authors: ["Léo Andrès <contact@ndrs.fr>"] 7license: "AGPL-3.0-or-later" 8tags: ["prelude" "stdlib" "safe" "exception" "layer" "hide"] 9homepage: "https://git.zapashcanon.fr/zapashcanon/prelude" 10bug-reports: "https://git.zapashcanon.fr/zapashcanon/prelude/issues" 11depends: [ 12 "dune" {>= "3.0"} 13 "ocaml" {>= "4.13"} 14 "bos" 15 "cmdliner" 16 "fmt" 17 "fpath" 18 "ocamlformat" {with-dev-setup} 19 "odoc" {with-dev-setup} 20 "odoc" {with-doc} 21] 22build: [ 23 ["dune" "subst"] {dev} 24 [ 25 "dune" 26 "build" 27 "-p" 28 name 29 "-j" 30 jobs 31 "@install" 32 "@runtest" {with-test} 33 "@doc" {with-doc} 34 ] 35] 36dev-repo: "git+https://git.zapashcanon.fr/zapashcanon/prelude.git" 37url { 38 src: "https://git.zapashcanon.fr/zapashcanon/prelude/archive/0.4.tar.gz" 39 checksum: [ 40 "sha256=858fd4291ea8767c6d238d7c5976107589053157dd4a6d53fa49a0451d7db7ab" 41 "sha512=beeacb29c18794854bfdf4d9ca53b24a35e64dbcc07e44fb56087cb14bbb4f8ad21c26eea202b04dd075c4fd84068ae997bd081a51989a6906c47fd58355da5f" 42 ] 43}