Update ocaml-menhir.
more/packages/ocaml.scm
| 618 | 618 | provers.") | |
| 619 | 619 | (license license:gpl2+))) | |
| 620 | 620 | ||
| 621 | + | (define-public ocaml-menhir-fix | |
| 622 | + | (package | |
| 623 | + | (inherit ocaml-menhir) | |
| 624 | + | (version "20170607") | |
| 625 | + | (name "ocaml-menhir-fix") | |
| 626 | + | (source (origin | |
| 627 | + | (method url-fetch) | |
| 628 | + | (uri (string-append | |
| 629 | + | "http://gallium.inria.fr/~fpottier/menhir/" | |
| 630 | + | "menhir-" version ".tar.gz")) | |
| 631 | + | (sha256 | |
| 632 | + | (base32 | |
| 633 | + | "0qffci9qxgfabzyalx851q994yykl4n9ylr4vbplsm6is1padjh0")))))) | |
| 634 | + | ||
| 621 | 635 | (define-public compcert | |
| 622 | 636 | (package | |
| 623 | 637 | (name "compcert") | |
| 624 | - | (version "3.0") | |
| 638 | + | (version "3.0.1") | |
| 625 | 639 | (source (origin | |
| 626 | 640 | (method url-fetch) | |
| 627 | 641 | (uri (string-append "http://compcert.inria.fr/release/compcert-" | |
| 628 | 642 | version ".tgz")) | |
| 629 | 643 | (sha256 | |
| 630 | 644 | (base32 | |
| 631 | - | "03fxf01acvy0akzb1czk33jsfmv2rka0m0jc1a2gmzs9i192rr7m")))) | |
| 645 | + | "0dgrj26dzdy4n3s9b5hwc6lm54vans1v4qx9hdp1q8w1qqcdriq9")))) | |
| 632 | 646 | (build-system gnu-build-system) | |
| 633 | 647 | (arguments | |
| 634 | 648 | `(#:phases | |
… | |||
| 640 | 654 | #:tests? #f)) | |
| 641 | 655 | (native-inputs | |
| 642 | 656 | `(("ocaml" ,ocaml) | |
| 643 | - | ("coq" ,coq))) | |
| 657 | + | ("coq" ,coq-fix))) | |
| 644 | 658 | (inputs | |
| 645 | - | `(("menhir" ,ocaml-menhir))) | |
| 659 | + | `(("menhir" ,ocaml-menhir-fix))) | |
| 646 | 660 | (home-page "http://compcert.inria.fr") | |
| 647 | 661 | (synopsis "Certified C compiler") | |
| 648 | 662 | (description "CompCert is a certified (with coq) C compiler. Warning: this | |