mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-01 09:57:46 +00:00
21 lines
No EOL
409 B
Scheme
21 lines
No EOL
409 B
Scheme
(use-modules
|
|
(gnu packages)
|
|
(gnu packages certs)
|
|
(gnu packages fontutils)
|
|
(guix build-system gnu)
|
|
(guix download)
|
|
((guix licenses) #:prefix license:)
|
|
(guix packages)
|
|
(guix utils))
|
|
|
|
(define utf8-locales
|
|
(make-glibc-utf8-locales
|
|
glibc
|
|
#:locales (list "en_US")
|
|
#:name "utf8-locales"))
|
|
|
|
(packages->manifest
|
|
(append
|
|
(list nss-certs
|
|
fontconfig
|
|
utf8-locales))) |