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 "ocamlformat" {with-dev-setup} 15 "odoc" {with-dev-setup} 16 "odoc" {with-doc} 17] 18build: [ 19 ["dune" "subst"] {dev} 20 [ 21 "dune" 22 "build" 23 "-p" 24 name 25 "-j" 26 jobs 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30 ] 31] 32dev-repo: "git+https://git.zapashcanon.fr/zapashcanon/prelude.git" 33url { 34 src: "https://git.zapashcanon.fr/zapashcanon/prelude/archive/0.5.tar.gz" 35 checksum: [ 36 "sha256=45545583bd11fe423e55a081815c613f1772ee64213abbe72634b228fb85e696" 37 "sha512=c63df230cfb6b928e9e766e2b621d1d9b5c6bc51e788967f45ab2c6529352befc1359bb55c1c33aa2b6e18b28ac563ab45b23e9742fbbda5b7544f9e26926f03" 38 ] 39}