import: opam: Also update dune packages.
* guix/import/opam.scm (opam-package?): Also accept packages that use the dune build system.
This commit is contained in:
parent
e57fb2852c
commit
a506a4c380
|
@ -292,7 +292,7 @@ package in OPAM."
|
||||||
(define (opam-package? package)
|
(define (opam-package? package)
|
||||||
"Return true if PACKAGE is an OCaml package from OPAM"
|
"Return true if PACKAGE is an OCaml package from OPAM"
|
||||||
(and
|
(and
|
||||||
(equal? (build-system-name (package-build-system package)) 'ocaml)
|
(member (build-system-name (package-build-system package)) '(dune ocaml))
|
||||||
(not (string-prefix? "ocaml4" (package-name package)))))
|
(not (string-prefix? "ocaml4" (package-name package)))))
|
||||||
|
|
||||||
(define (latest-release package)
|
(define (latest-release package)
|
||||||
|
|
Loading…
Reference in New Issue