diff options
Diffstat (limited to 'guix/import/texlive.scm')
-rw-r--r-- | guix/import/texlive.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/guix/import/texlive.scm b/guix/import/texlive.scm index a26e467dca..3b5c7192b1 100644 --- a/guix/import/texlive.scm +++ b/guix/import/texlive.scm @@ -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))) |