mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: ocaml-findlib: Update to 1.8.1.
* gnu/packages/ocaml.scm (ocaml-findlib): Update to 1.8.1. [native-inputs]: Remove camlp4.
This commit is contained in:
parent
3a23b461f4
commit
a36074a829
1 changed files with 4 additions and 11 deletions
|
@ -959,18 +959,17 @@ to the other.")
|
||||||
(define-public ocaml-findlib
|
(define-public ocaml-findlib
|
||||||
(package
|
(package
|
||||||
(name "ocaml-findlib")
|
(name "ocaml-findlib")
|
||||||
(version "1.8.0")
|
(version "1.8.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://download.camlcity.org/download/"
|
(uri (string-append "http://download.camlcity.org/download/"
|
||||||
"findlib" "-" version ".tar.gz"))
|
"findlib" "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1b97zqjdriqd2ikgh4rmqajgxwdwn013riji5j53y3xvcmnpsyrb"))))
|
"00s3sfb02pnjmkax25pcnljcnhcggiliccfz69a72ic7gsjwz1cf"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("camlp4" ,camlp4)
|
`(("m4" ,m4)
|
||||||
("m4" ,m4)
|
|
||||||
("ocaml" ,ocaml)))
|
("ocaml" ,ocaml)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no test suite
|
`(#:tests? #f ; no test suite
|
||||||
|
@ -993,13 +992,7 @@ to the other.")
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(invoke "make" "install"
|
(invoke "make" "install"
|
||||||
(string-append "OCAML_CORE_STDLIB="
|
(string-append "OCAML_CORE_STDLIB="
|
||||||
out "/lib/ocaml/site-lib")))))
|
out "/lib/ocaml/site-lib"))))))))
|
||||||
(add-after 'install 'remove-camlp4
|
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
|
||||||
(let ((out (assoc-ref outputs "out")))
|
|
||||||
(delete-file-recursively
|
|
||||||
(string-append out "/lib/ocaml/site-lib/camlp4"))
|
|
||||||
#t))))))
|
|
||||||
(home-page "http://projects.camlcity.org/projects/findlib.html")
|
(home-page "http://projects.camlcity.org/projects/findlib.html")
|
||||||
(synopsis "Management tool for OCaml libraries")
|
(synopsis "Management tool for OCaml libraries")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue