https://github.com/thery/hanoi
Raw File
Tip revision: 67adfffa662dfa04a8c4bb5899f305f942e4e47c authored by thery on 21 April 2021, 01:33:05 UTC
README
Tip revision: 67adfff
hanoi.opam
opam-version: "1.2"
name: "hanoi"
maintainer: "Laurent.Thery@inria.fr"
homepage: "https://github.com/thery/hanoi"
bug-reports: "https://github.com/thery/hanoi/issues"
dev-repo: "git@github.com:thery/hanoi"
synopsis: "Hanoi for Coq"
description: "Some Proofs about the Tower of Hanoi"

license: "CeCILL-B"
authors: ["Laurent Théry"]
build: [
  [make "-j%{jobs}%"]
]
install: [
  [make "install"]
]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/hanoi"]
depends: [
  "coq" {(>= "8.13")}
  "coq-mathcomp-ssreflect" { (>= "1.12") }
  "coq-mathcomp-algebra" { (>= "1.12") }
  "coq-mathcomp-finmap" { (>= "1.5.1") }
  "coq-mathcomp-bigenough" { (>= "1.0.0") }
]
tags: [
]
back to top