From 0be2108d4017e1e19661489da5812276198c05d1 Mon Sep 17 00:00:00 2001 From: Luis Felipe Date: Wed, 27 Sep 2023 11:16:58 -0500 Subject: gnu: Add font-orbitron. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/fonts.scm (font-orbitron): New variable. Signed-off-by: Ludovic Courtès --- gnu/packages/fonts.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'gnu/packages/fonts.scm') diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 0c380adaa8..a529f325a2 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -58,6 +58,7 @@ ;;; Copyright © 2023 gemmaro ;;; Copyright © 2023 Denis 'GNUtoo' Carikli ;;; Copyright © 2023 chris +;;; Copyright © 2023 Luis Felipe López Acevedo ;;; ;;; This file is part of GNU Guix. ;;; @@ -3457,3 +3458,29 @@ (define-public fonts-tlwg is to provide fonts that conform to existing standards and recommendations, so that it can be a reference implementation.") (license license:gpl2+))) + +(define-public font-orbitron + (let ((version "0") + (commit "13e6a5222aa6818d81c9acd27edd701a2d744152") + (revision "0")) + (package + (name "font-orbitron") + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/theleagueof/orbitron") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1c6jb7ayr07j1pbnzf3jxng9x9bbqp3zydf8mqdw9ifln1b4ycyf")))) + (build-system font-build-system) + (home-page "https://github.com/theleagueof/orbitron") + (synopsis "Futuristic geometric sans-serif") + (description "Orbitron is a geometric sans-serif typeface intended +for display purposes. It features four weights (light, medium, bold, +and black), a stylistic alternative, small caps, and many alternate +glyphs.") + (license license:silofl1.1)))) -- cgit v1.2.3