From 5f790fbf9d571844ff4abd0643aa9d67d22226e6 Mon Sep 17 00:00:00 2001 From: nik gaffney Date: Wed, 8 May 2024 10:55:19 +0200 Subject: [PATCH] Put in earplugs --- channel/zzkt/packages/fonts-0xType.scm | 73 ++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 channel/zzkt/packages/fonts-0xType.scm diff --git a/channel/zzkt/packages/fonts-0xType.scm b/channel/zzkt/packages/fonts-0xType.scm new file mode 100644 index 0000000..575c42e --- /dev/null +++ b/channel/zzkt/packages/fonts-0xType.scm @@ -0,0 +1,73 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2024 nik gaffney +;;; +;;; This file is not (yet) part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +;; as seen near gnu/packages/fonts.scm + +;; 0xType is a type foundry specialized in programming fonts. +;; https://0xtype.dev/ + +(define-module (zzkt packages fonts) + #:use-module (ice-9 regex) + #:use-module (guix utils) + #:use-module ((guix licenses) + #:prefix license:) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix gexp) + #:use-module (guix git-download) + #:use-module (guix build-system font) + #:use-module (guix build-system trivial)) + +(define-public font-0xProto + (package + (name "font-0xProto") + (version "2.000") + (source + (origin + (method url-fetch) + (uri "https://github.com/0xType/0xProto/releases/download/2.000/0xProto_2_000.zip") + (sha256 + (base32 "1l5lqvchfjhn42s5rdr74s1jzcadnd8vba8s113bbfky1ymgysgg")))) + (build-system font-build-system) + (home-page "https://github.com/0xType/0xProto") + (synopsis "A programming font focused on source code legibility") + (description + "0xProto is a programming font focused on source code legibility. Features; clear differentiation, legibility in small font size, more whitespace, and ligatures that don't deform shape. + +Designed by 0xType") + (license license:silofl1.1))) + + +(define-public font-0xPropo + (package + (name "font-0xPropo") + (version "1.000") + (source + (origin + (method url-fetch) + (uri "https://github.com/0xType/0xPropo/releases/download/1.000/0xPropo_1_000.zip") + (sha256 + (base32 "0mrihzffqfxxhmmgs43q5v4z8k6s4k6vcmyd3f0pr7r1fvwigfyc")))) + (build-system font-build-system) + (home-page "https://github.com/0xType/0xPropo") + (synopsis "Just the proportional version of 0xProto") + (description + "0xPropo is a font that retains the atmosphere and beauty of a monospace font and solves some of the difficulties in using monospace fonts for writing natural language (e.g. m and H are too close together, and i and l have too much space). + +Designed by 0xType") + (license license:silofl1.1)))