guix: texlive importer ignores "-dev" packages in propagated inputs.
* guix/import/texlive.scm (translate-depends): Skip "-dev" packages.
This commit is contained in:
parent
f3cdb6e203
commit
4d171bf03f
@ -153,6 +153,9 @@ When TEXLIVE-ONLY is true, only TeX Live packages are returned."
|
||||
((or (? (cut string-prefix? "texlive-" <>))
|
||||
"tlshell" "texlive.infra")
|
||||
#f)
|
||||
;; And also development packages, which should inherit from
|
||||
;; the current package anyway.
|
||||
((? (cut string-suffix? "-dev" <>)) #f)
|
||||
;; Others.
|
||||
(name name))
|
||||
depends)))
|
||||
|
Loading…
x
Reference in New Issue
Block a user