mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: font-intel-one-mono: Split outputs for "out", "ttf" and "woff".
* gnu/packages/fonts.scm (font-intel-one-mono)[outputs]: New field. [arguments]: Add 'split-outputs phase. Change-Id: I0323fb55b9609c93c916b32fef4821533d580b48 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
63f6f75eae
commit
be1d8cdc76
1 changed files with 18 additions and 0 deletions
|
@ -226,7 +226,25 @@ (define-public font-intel-one-mono
|
|||
(sha256
|
||||
(base32
|
||||
"0w9isn8az1k3a3q4m2llwnryy79i5v30dx1hfaf90x0zkj98ky5h"))))
|
||||
(outputs '("out" "ttf" "woff"))
|
||||
(build-system font-build-system)
|
||||
(arguments
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'install 'split-outputs
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out-fonts (string-append (assoc-ref outputs "out")
|
||||
"/share/fonts"))
|
||||
(ttf-fonts (string-append (assoc-ref outputs "ttf")
|
||||
"/share/fonts"))
|
||||
(woff-fonts (string-append (assoc-ref outputs "woff")
|
||||
"/share/fonts")))
|
||||
(mkdir-p ttf-fonts)
|
||||
(mkdir-p woff-fonts)
|
||||
(rename-file (string-append out-fonts "/truetype")
|
||||
(string-append ttf-fonts "/truetype"))
|
||||
(rename-file (string-append out-fonts "/web")
|
||||
(string-append woff-fonts "/web"))))))))
|
||||
(home-page "https://github.com/intel/intel-one-mono")
|
||||
(synopsis "Expressive monospaced font family")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue