diff options
author | Sergio Pastor Pérez <sergio.pastorperez@outlook.es> | 2025-02-27 15:52:15 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2025-02-27 15:52:22 +0100 |
commit | 2c6e621904cc3ed248c2e35bd402ebc3a5cd12b5 (patch) | |
tree | 1ee3cf7d32473ff2a872c0893a6276d9a0e3b4b5 | |
parent | 1cde09675eeb835b85fed4d80723a8e208fe0ecb (diff) | |
download | guix-2c6e621904cc3ed248c2e35bd402ebc3a5cd12b5.tar.gz guix-2c6e621904cc3ed248c2e35bd402ebc3a5cd12b5.zip |
gnu: Add font-et-book.
* gnu/packages/fonts.scm (font-et-book): New variable.
Change-Id: Ic9b781d07e0628eb43a1bef2b354c7a82007fbc0
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/fonts.scm | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 63f307fdda..4df0b57060 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -4179,6 +4179,28 @@ It is relatively compact to allow a lot of code on screen, while (hopefully) cle enough to remain readable even at high resolutions.") (license license:expat))) +(define-public font-et-book + (let ((commit "24d3a3bbfc880095d3df2b9e9d60d05819138e89")) + (package + (name "font-et-book") + (version "1.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/edwardtufte/et-book") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1bhpk1fbp8jdhzc5j8y5v3bpnzy2sz3dpgjgzclb0dnm51hqqrpn")))) + (build-system font-build-system) + (home-page "https://edwardtufte.github.io/et-book/") + (synopsis "ET Book fonts") + (description + "ET Book is a Bembo-like font for the computer designed by Dmitry Krasny, +Bonnie Scranton, and Edward Tufte.") + (license license:expat)))) + (define-public font-cica (package (name "font-cica") @@ -4187,7 +4209,7 @@ enough to remain readable even at high resolutions.") (origin (method url-fetch) (uri (string-append "https://github.com/miiton/Cica/releases/download/" - "v" version "/Cica_v" version ".zip")) + "v" version "/Cica_v" version ".zip")) (sha256 (base32 "0vshn2cd70mnbavsw9cbagcasa95wiv9qdj4wkzxn7gxygqvrlfb")))) (build-system font-build-system) |