gnu: coq-coquelicot: Fix for coq 8.8.
* gnu/packages/ocaml.scm (coq-coquelicot)[arguments]: New phase to remove a deprecated command.
This commit is contained in:
parent
066d05f083
commit
925fe4b3ce
|
@ -4034,6 +4034,12 @@ part of the distribution.")
|
||||||
"/lib/coq/user-contrib/Coquelicot"))
|
"/lib/coq/user-contrib/Coquelicot"))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'configure 'fix-coq8.8
|
||||||
|
(lambda _
|
||||||
|
; appcontext has been removed from coq 8.8
|
||||||
|
(substitute* "theories/AutoDerive.v"
|
||||||
|
(("appcontext") "context"))
|
||||||
|
#t))
|
||||||
(add-before 'configure 'fix-remake
|
(add-before 'configure 'fix-remake
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "remake.cpp"
|
(substitute* "remake.cpp"
|
||||||
|
|
Loading…
Reference in New Issue