~ruther/guix-config

ref: de5aab5b137baf837c54b320dc7b9add297f8f1f guix-config/home/fonts.scm -rw-r--r-- 828 bytes
de5aab5b — Rutherther fix: pulseaudio autospawn correct syntax 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
(define-module (home fonts)
  #:use-module (gnu packages compression)
  #:use-module (guix packages)
  #:use-module (guix build-system copy)
  #:use-module (guix download))

(define-public font-ubuntu
  (package
   (name "font-ubuntu")
   (version "0.83")
   (source
    (origin
     (method url-fetch)
     (uri (string-append
           "https://assets.ubuntu.com/v1/fad7939b-ubuntu-font-family-"
           version ".zip"))
     (sha256
      (base32
       "0hjvq2x758dx0sfwqhzflns0ns035qm7h6ygskbx1svzg517sva5"))))
   (inputs
    (list unzip))
   (build-system copy-build-system)
   (arguments
    '(#:install-plan
      '(
        ("." "share/fonts/ubuntu/" #:include-regexp ("\\.ttf$")))))
   (home-page "http://font.ubuntu.com")
   (synopsis "Ubuntu Font Family")
   (description "Ubuntu Font Family")
   (license #f)))
Do not follow this link