mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2026-01-25 03:54:58 -06:00
nongnu: Fix apple fonts build failures introduced by p7zip deprecation.
* nongnu/packages/fonts.scm (apple-font) [arguments]: Adjust to fix build. [native-inputs]: Replace p7zip with 7zip.
This commit is contained in:
parent
23ad0f905a
commit
f9ceb1de12
1 changed files with 2 additions and 1 deletions
|
|
@ -203,8 +203,9 @@ Included fonts:
|
||||||
(let ((7z-exe (search-input-file inputs "/bin/7z")))
|
(let ((7z-exe (search-input-file inputs "/bin/7z")))
|
||||||
(invoke 7z-exe "x" source)
|
(invoke 7z-exe "x" source)
|
||||||
(invoke 7z-exe "x" (car (find-files "." "\\.pkg$")))
|
(invoke 7z-exe "x" (car (find-files "." "\\.pkg$")))
|
||||||
|
(invoke 7z-exe "x" (car (find-files "." "^Payload$")))
|
||||||
(invoke 7z-exe "x" "Payload~")))))))
|
(invoke 7z-exe "x" "Payload~")))))))
|
||||||
(native-inputs (list p7zip))
|
(native-inputs (list 7zip))
|
||||||
(home-page "https://developer.apple.com/fonts")
|
(home-page "https://developer.apple.com/fonts")
|
||||||
(synopsis (string-append font-name " typeface by Apple."))
|
(synopsis (string-append font-name " typeface by Apple."))
|
||||||
(description description)
|
(description description)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue