Revision 386c62b7d11f00bcc9b445f156ce452d3b21f407 authored by SimonBoulier on 17 September 2019, 09:34:28 UTC, committed by SimonBoulier on 17 September 2019, 09:37:46 UTC
1 parent aa971e4
Raw File
coq-metacoq-extraction.opam
opam-version: "2.0"
version: "2.2"
maintainer: "matthieu.sozeau@inria.fr"
homepage: "https://metacoq.github.io/metacoq"
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.8"
bug-reports: "https://github.com/MetaCoq/metacoq/issues"
authors: ["Abhishek Anand <aa755@cs.cornell.edu>"
          "Simon Boulier <simon.boulier@inria.fr>"
          "Cyril Cohen <cyril.cohen@inria.fr>"
          "Yannick Forster <forster@ps.uni-saarland.de>"
          "Fabian Kunze <fkunze@fakusb.de>"
          "Gregory Malecha <gmalecha@gmail.com>"
          "Matthieu Sozeau <matthieu.sozeau@inria.fr>"
          "Nicolas Tabareau <nicolas.tabareau@inria.fr>"
          "Théo Winterhalter <theo.winterhalter@inria.fr>"
]
license: "MIT"
build: [
  [make "-j%{jobs}%" "-C" "extraction"]
]
install: [
  [make "-C" "extraction" "install"]
]
depends: [
  "ocaml" {> "4.02.3"}
  "coq" {>= "8.8" & < "8.9~"}
  "coq-metacoq-template" {= version}
  "coq-metacoq-checker" {= version}
  "coq-metacoq-pcuic" {= version}
]
synopsis: "Implementation and verification of Coq's \"extraction\" procedure"
description: """
MetaCoq is a meta-programming framework for Coq.

The Extraction module provides a complete specification of Coq's so-called
\"extraction\" procedure, starting from the PCUIC calculus and targeting
untyped call-by-value lambda-calculus.

The `erasure` function translates types and proofs in well-typed terms
into a dummy `tBox` constructor, following closely P. Letouzey's PhD
thesis.
"""
# url {
#   src: "https://github.com/MetaCoq/metacoq/archive/v2.1-beta3.tar.gz"
#   checksum: "md5=e81b8ecabef788a10337a39b095d54f3"
# }
back to top