mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: texlive-texmf: Mark as non-substitutable.
* gnu/packages/tex.scm (texlive-texmf)[arguments]: Add #:substitutable?.
This commit is contained in:
parent
2be896dec1
commit
a348af403d
1 changed files with 7 additions and 1 deletions
|
@ -187,6 +187,11 @@ (define texlive-texmf
|
|||
`(#:modules ((guix build gnu-build-system)
|
||||
(guix build utils)
|
||||
(srfi srfi-26))
|
||||
|
||||
;; This package takes 4 GiB, which we can't afford to distribute from
|
||||
;; our servers.
|
||||
#:substitutable? #f
|
||||
|
||||
#:phases
|
||||
(modify-phases (map (cut assq <> %standard-phases)
|
||||
'(set-paths unpack patch-source-shebangs))
|
||||
|
@ -301,7 +306,8 @@ (define-public texlive
|
|||
|
||||
|
||||
;; texlive-texmf-minimal is a pruned, small version of the texlive tree,
|
||||
;; in particular dropping documentation and fonts.
|
||||
;; in particular dropping documentation and fonts. It weighs in at 470 MiB
|
||||
;; instead of 4 GiB.
|
||||
(define texlive-texmf-minimal
|
||||
(package (inherit texlive-texmf)
|
||||
(name "texlive-texmf-minimal")
|
||||
|
|
Loading…
Reference in a new issue