gnu: dune: Update to 4.4.1.
* gnu/packages/ocaml.scm (dune): Update to 4.4.1. * gnu/packages/coq.scm (coq-stdlib): Fix for new dune.
parent
b4d97ef2de
commit
42d5f769fb
|
@ -101,7 +101,18 @@ It is developed using Objective Caml and Camlp5.")
|
||||||
(name "coq-stdlib")
|
(name "coq-stdlib")
|
||||||
(arguments
|
(arguments
|
||||||
`(#:package "coq-stdlib"
|
`(#:package "coq-stdlib"
|
||||||
#:test-target "."))
|
#:test-target "."
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'build 'fix-dune
|
||||||
|
(lambda _
|
||||||
|
(substitute* "user-contrib/Ltac2/dune"
|
||||||
|
(("coq-core.plugins.ltac2")
|
||||||
|
(string-join
|
||||||
|
(map (lambda (plugin) (string-append "coq-core.plugins." plugin))
|
||||||
|
'("ltac2" "number_string_notation" "tauto" "cc"
|
||||||
|
"firstorder"))
|
||||||
|
" "))))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list coq-core gmp ocaml-zarith))
|
(list coq-core gmp ocaml-zarith))
|
||||||
(native-inputs '())))
|
(native-inputs '())))
|
||||||
|
|
|
@ -1705,7 +1705,7 @@ full_split, cut, rcut, etc..")
|
||||||
(define dune-bootstrap
|
(define dune-bootstrap
|
||||||
(package
|
(package
|
||||||
(name "dune")
|
(name "dune")
|
||||||
(version "3.3.1")
|
(version "3.4.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -1714,7 +1714,7 @@ full_split, cut, rcut, etc..")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0wdja70l7y1cj1d0sijm0q0cbics8xd9wqka7zyb29y1cc57pasa"))))
|
"02zn79l7y7rvy7b6bimlf5qymrvzc43w8q7l4jx3k8wzn2g5326z"))))
|
||||||
(build-system ocaml-build-system)
|
(build-system ocaml-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f; require odoc
|
`(#:tests? #f; require odoc
|
||||||
|
|
Reference in New Issue