Add coq-io
more/packages/ocaml.scm
| 512 | 512 | (synopsis "") | |
| 513 | 513 | (description "") | |
| 514 | 514 | (license license:lgpl2.1+))) | |
| 515 | + | ||
| 516 | + | (define-public coq-io | |
| 517 | + | (package | |
| 518 | + | (name "coq-io") | |
| 519 | + | (version "3.3.0") | |
| 520 | + | (source (origin | |
| 521 | + | (method url-fetch) | |
| 522 | + | (uri (string-append "https://github.com/coq-io/io/archive/" | |
| 523 | + | version ".tar.gz")) | |
| 524 | + | (file-name (string-append name "-" version ".tar.gz")) | |
| 525 | + | (sha256 | |
| 526 | + | (base32 | |
| 527 | + | "0k1z8kav3wz5n04g3imm1hqjimb9cf12ga5wkj1skz8l5ccjxprw")))) | |
| 528 | + | (build-system gnu-build-system) | |
| 529 | + | (arguments | |
| 530 | + | `(#:tests? #f; no tests | |
| 531 | + | #:make-flags | |
| 532 | + | (list (string-append "COQLIB=" (assoc-ref %outputs "out") "/lib/coq/")) | |
| 533 | + | #:phases | |
| 534 | + | (modify-phases %standard-phases | |
| 535 | + | (replace 'configure | |
| 536 | + | (lambda _ | |
| 537 | + | (invoke "./configure.sh") | |
| 538 | + | #t))))) | |
| 539 | + | (native-inputs | |
| 540 | + | `(("coq" ,coq-8.6))) | |
| 541 | + | (home-page "") | |
| 542 | + | (synopsis "") | |
| 543 | + | (description "") | |
| 544 | + | (license license:lgpl2.1+))) |