gnu: Add ocaml-findlib-1.7.3.

* gnu/packages/ocaml.scm (ocaml-findlib-1.7.3): New variable.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Peter Kreye 2017-10-27 18:33:25 -05:00 committed by Ludovic Courtès
parent e88ff71c10
commit 50856b7342
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -897,6 +897,28 @@ (define-public ocaml-findlib
compilers that can directly deal with packages.")
(license license:x11)))
(define-public ocaml-findlib-1.7.3
(package
(inherit ocaml-findlib)
(version "1.7.3")
(source (origin
(method url-fetch)
(uri (string-append "http://download.camlcity.org/download/"
"findlib" "-" version ".tar.gz"))
(sha256
(base32
"12xx8si1qv3xz90qsrpazjjk4lc1989fzm97rsmc4diwla7n15ni"))))
(arguments
(substitute-keyword-arguments (package-arguments ocaml-findlib)
((#:phases phases)
`(modify-phases ,phases
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(zero? (system* "make" "install"
(string-append "OCAML_CORE_STDLIB="
out))))))))))))
(define-public ocaml4.01-findlib
(package
(inherit ocaml-findlib)