diff options
author | Sergio Pastor Pérez <sergio.pastorperez@outlook.es> | 2025-02-27 15:58:18 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2025-02-27 15:58:18 +0100 |
commit | 4ead3b607da210b72424b41610e5610e42c17b35 (patch) | |
tree | 6c77102795d6a5a7f18339cd773b3fc63388d499 | |
parent | 2c6e621904cc3ed248c2e35bd402ebc3a5cd12b5 (diff) | |
download | guix-4ead3b607da210b72424b41610e5610e42c17b35.tar.gz guix-4ead3b607da210b72424b41610e5610e42c17b35.zip |
gnu: Add font-arapey.
* gnu/packages/fonts.scm (font-arapey): New variable.
Change-Id: I97988d86d6cb406ff2a332151dd923597142d0cd
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/fonts.scm | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 4df0b57060..d9732281ed 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -109,6 +109,29 @@ #:use-module (gnu packages sdl) #:use-module (gnu packages xorg)) +(define-public font-arapey + (let ((commit "28fa45c7f31afe62f577b0b857570ab0326b9113")) + (package + (name "font-arapey") + (version "0.0.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/etunni/arapey") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1wvzx8gkw1d2dc2zqp8a75lc1kr6fvg90asyjkbrcynqi6qnwkaf")))) + (build-system font-build-system) + (home-page "https://github.com/etunni/arapey") + (synopsis "Typeface with soft lines, curving tips, and rhythmic nuances") + (description + "Arapey (Ah-ra-pay) is a contemporary modern typeface with some +features of a Bodoni, but the structures, soft lines, and finishes leave +a calm and distinguished feeling.") + (license license:silofl1.1)))) + (define-public font-artifika (package (name "font-artifika") @@ -3977,9 +4000,9 @@ Most characters are just 4px wide, which is brilliant for low dpi(90-120) displa (synopsis "The Tuffy Truetype Font Family") (description "Thatcher Ulrich's first outline font design. He started with the goal -+of producing a neutral, readable sans-serif text font. There are lots of -+\"expressive\" fonts out there, but he wanted to start with something very -+plain and clean, something he might want to actually use.") +of producing a neutral, readable sans-serif text font. There are lots of +\"expressive\" fonts out there, but he wanted to start with something very +plain and clean, something he might want to actually use.") (license license:public-domain))) (define-public font-velvetyne-jgs |