this repo has no description
1opam-version: "2.0" 2synopsis: "PPX extension for overriding modules" 3description: """ 4PPX extensions [%%override], [%%import], [%%include] and [%%rewrite] to import 5and change module interfaces. 6""" 7maintainer: ["Thierry Martinez <thierry.martinez@inria.fr>"] 8authors: ["Thierry Martinez <thierry.martinez@inria.fr>"] 9license: "BSD-2-Clause" 10homepage: "https://github.com/thierry-martinez/override" 11doc: "https://github.com/thierry-martinez/override" 12bug-reports: "https://github.com/thierry-martinez/override" 13depends: [ 14 "dune" {>= "2.9"} 15 "ocaml" {>= "4.08.0" & < "4.14" } 16 "ppxlib" {>= "0.23.0" & < "0.26.0"} 17 "stdcompat" {>= "9" & < "19"} 18 "metapp" {>= "0.4.2"} 19 "metaquot" {>= "0.4.0"} 20 "refl" {>= "0.1.0"} 21 "odoc" {with-doc} 22] 23build: [ 24 ["dune" "subst"] {dev} 25 [ 26 "dune" 27 "build" 28 "-p" 29 name 30 "-j" 31 jobs 32 "--promote-install-files=false" 33 "@install" 34 "@runtest" {with-test} 35 "@doc" {with-doc} 36 ] 37 ["dune" "install" "-p" name "--create-install-files" name] 38] 39dev-repo: "git+https://github.com/thierry-martinez/override" 40url { 41 src: "https://github.com/thierry-martinez/override/archive/refs/tags/v0.4.0.tar.gz" 42 checksum: "sha512=43025432d632d4e88e2e9912fcce0e12c64ecd1e8cff78887e9c847bd90b14a859c6b776e027e155d462834d8a372489c86fbd543d6b23d8b239c213e4078b85" 43}