Archived
1
0
Fork 0

gnu: ocaml-bindlib: Update to 6.0.0.

* gnu/packages/ocaml.scm (ocaml-bindlib): Update to 6.0.0.
This commit is contained in:
Julien Lepiller 2022-03-01 22:51:21 +01:00
parent f0dbbe88ce
commit 4709a7bb86
No known key found for this signature in database
GPG key ID: 53D457B2D636EE82

View file

@ -4559,30 +4559,20 @@ collection.")
(define-public ocaml-bindlib (define-public ocaml-bindlib
(package (package
(name "ocaml-bindlib") (name "ocaml-bindlib")
(version "5.0.1") (version "6.0.0")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/rlepigre/ocaml-bindlib") (url "https://github.com/rlepigre/ocaml-bindlib")
(commit (string-append "ocaml-bindlib_" version)))) (commit version)))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1f8kr81w8vsi4gv61xn1qbc6zrzkjp8l9ix0942vjh4gjxc74v75")))) "1viyws3igy49hfaj4jaiwm4iggck9zdn7r3g6kh1n4zxphqk57yk"))))
(build-system ocaml-build-system) (build-system dune-build-system)
(arguments (arguments
`(#:tests? #f ;no tests `(#:test-target "."))
#:use-make? #t
#:phases
(modify-phases %standard-phases
(delete 'configure)
(replace 'build
(lambda _
(invoke "make")))
(replace 'install
(lambda _
(invoke "make" "install"))))))
(native-inputs (native-inputs
(list ocamlbuild ocaml-findlib)) (list ocamlbuild ocaml-findlib))
(home-page "https://rlepigre.github.io/ocaml-bindlib/") (home-page "https://rlepigre.github.io/ocaml-bindlib/")