mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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
1 changed files with 3 additions and 0 deletions
|
@ -153,6 +153,9 @@ (define* (translate-depends depends #:optional texlive-only)
|
|||
((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…
Reference in a new issue