blob: f88bb72009a7deab9c0646cda6f24f34eeac7c00 (
plain)
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
|
(define-module (oni packages fonts)
#:use-module ((guix packages) #:select (package origin base32))
#:use-module ((guix download) #:select (url-fetch))
#:use-module ((guix licenses) #:prefix license:)
#:use-module ((guix build-system font) #:select (font-build-system)))
(define-public font-comfortaa
(package
(name "font-comfortaa")
(version "1.7")
(source
(origin
(method url-fetch)
(uri "https://www.1001fonts.com/download/comfortaa.zip")
(sha256
(base32 "1afrk347lxhd2p9dq84nhbl26553wpkwz74nqnqf44xxpzwnvl3m"))))
(build-system font-build-system)
(home-page "https://www.deviantart.com/aajohan/art/Comfortaa-font-105395949")
(synopsis "Very simple, rounded, sans serif family")
(description
"Comfortaa is a very simple, rounded, sans serif family.
The lighter weights are minimalist. The bolder weights have more personality.
The medium weight is nice and balanced. The overall result is a family
that's clean and modern, and can express a wide range of voices & feelings.
It comes in 7 incremental weights:
ExtraLight, Light, Book, Medium, Semibold, Bold & ExtraBold")
(license license:silofl1.1)))
|