mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-16 17:27:38 +00:00
24 lines
462 B
Scheme
24 lines
462 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)
|
|
(gnu packages xorg)
|
|
)
|
|
|
|
(define utf8-locales
|
|
(make-glibc-utf8-locales
|
|
glibc
|
|
#:locales (list "en_US")
|
|
#:name "utf8-locales"))
|
|
|
|
(packages->manifest
|
|
(append
|
|
(list nss-certs
|
|
fontconfig
|
|
utf8-locales
|
|
xkeyboard-config)))
|