this repo has no description
1opam-version: "2.0" 2synopsis: 3 "OCaml library and executable to work with the scfg configuration file format" 4description: 5 "scfg is an OCaml library and executable to work with the scfg configuration file format. It provides a parser, a pretty printer and a module to perform queries." 6maintainer: ["Léo Andrès <contact@ndrs.fr>"] 7authors: ["Léo Andrès <contact@ndrs.fr>"] 8license: "ISC" 9tags: ["scfg" "configuration" "format" "simple" "config" "parser" "printer"] 10homepage: "https://git.zapashcanon.fr/zapashcanon/scfg" 11doc: "https://doc.zapashcanon.fr/scfg" 12bug-reports: "https://git.zapashcanon.fr/zapashcanon/scfg/issues" 13depends: [ 14 "dune" {>= "2.9"} 15 "bos" {>= "0.2.1"} 16 "fpath" 17 "cmdliner" {>= "1.3.0"} 18 "fmt" {>= "0.9.0"} 19 "menhir" {>= "20211230"} 20 "ocaml" {>= "4.13"} 21 "sedlex" 22 "prelude" {= "0.4"} 23 "odoc" {with-doc} 24] 25build: [ 26 ["dune" "subst"] {dev} 27 [ 28 "dune" 29 "build" 30 "-p" 31 name 32 "-j" 33 jobs 34 "--promote-install-files=false" 35 "@install" 36 "@runtest" {with-test} 37 "@doc" {with-doc} 38 ] 39 ["dune" "install" "-p" name "--create-install-files" name] 40] 41dev-repo: "git+https://git.zapashcanon.fr/zapashcanon/scfg.git" 42url { 43 src: "https://git.zapashcanon.fr/zapashcanon/scfg/archive/0.4.tar.gz" 44 checksum: [ 45 "sha256=4098b9d5d1facd20325332939d7167d54f6dd612e4915df5eebfda90eb027997" 46 "sha512=70bbb4d7ff41e165cd9b61b53bd554aba362bd51728dc3d366ce0fa0ed88dc68d58345d995188793a7220d7779eea4d5433257011a77c58e3f4498839544acf4" 47 ] 48}