Put in earplugs
This commit is contained in:
parent
b6b245201d
commit
b4c4749e51
1 changed files with 100 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
;;; Copyright © 2023 nik gaffney <nik@fo.am>
|
;;; Copyright © 2023 nik gaffney <nik@fo.am>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is not (yet) part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
;;; 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
|
;;; under the terms of the GNU General Public License as published by
|
||||||
|
@ -45,9 +45,108 @@
|
||||||
#:use-module (gnu packages sdl)
|
#:use-module (gnu packages sdl)
|
||||||
#:use-module (gnu packages xorg))
|
#:use-module (gnu packages xorg))
|
||||||
|
|
||||||
|
;; https://guix.gnu.org/manual/en/html_node/Fonts.html
|
||||||
|
|
||||||
|
;; The name of a package containing only one font family starts with font-
|
||||||
|
;; it is followed by the foundry name and a dash - if the foundry is known,
|
||||||
|
;; and the font family name, in which spaces are replaced by dashes (and as
|
||||||
|
;; usual, all upper case letters are transformed to lower case).
|
||||||
|
;; For example, the Gentium font family by SIL is packaged under the name font-sil-gentium.
|
||||||
|
|
||||||
|
;; For a package containing several font families, the name of the collection
|
||||||
|
;; is used in the place of the font family name. For instance, the Liberation
|
||||||
|
;; fonts consist of three families, Liberation Sans, Liberation Serif and
|
||||||
|
;; Liberation Mono. These could be packaged separately under the names font-liberation-sans
|
||||||
|
;; and so on, but as they are distributed together under a common name, we prefer to
|
||||||
|
;; package them together as font-liberation.
|
||||||
|
|
||||||
|
;; guix package -s font | recsel -p name,synopsis
|
||||||
|
|
||||||
|
;; guix package -i fontconfig
|
||||||
|
;; fc-cache -rv
|
||||||
|
|
||||||
;; various foundries
|
;; various foundries
|
||||||
|
|
||||||
|
;; https://velvetyne.fr/
|
||||||
|
|
||||||
|
;; https://velvetyne.fr/fonts/degheest/
|
||||||
|
;; https://velvetyne.fr/fonts/fungal/
|
||||||
|
;; https://velvetyne.fr/fonts/sligoil/
|
||||||
|
;; https://velvetyne.fr/fonts/outward/
|
||||||
|
;; https://velvetyne.fr/fonts/karrik/
|
||||||
|
;; https://velvetyne.fr/fonts/cirruscumulus/
|
||||||
|
;; https://velvetyne.fr/fonts/le-murmure/
|
||||||
|
;; https://velvetyne.fr/fonts/resistance/
|
||||||
|
;; https://velvetyne.fr/fonts/gulax/
|
||||||
|
;; https://velvetyne.fr/fonts/lineal/
|
||||||
|
|
||||||
|
|
||||||
|
;; font-velvetyne-degheest
|
||||||
|
;; font-velvetyne-fungal
|
||||||
|
;; font-velvetyne-sligoil
|
||||||
|
;; font-velvetyne-outward
|
||||||
|
;; font-velvetyne-karrik
|
||||||
|
;; font-velvetyne-cirruscumulus
|
||||||
|
;; font-velvetyne-le-murmure
|
||||||
|
;; font-velvetyne-resistance
|
||||||
|
;; font-velvetyne-gulax
|
||||||
|
;; font-velvetyne-lineal
|
||||||
|
|
||||||
|
;; https://velvetyne.fr/fonts/bianzhidai/
|
||||||
|
;; https://github.com/sdfggvfvj/bianzhidai-2.0
|
||||||
|
|
||||||
|
(define-public font-velvetyne-bianzhidai
|
||||||
|
(package
|
||||||
|
(name "font-velvetyne-bianzhidai")
|
||||||
|
(version "2.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri "https://github.com/sdfggvfvj/bianzhidai-2.0/archive/refs/tags/OFL.tar.gz")
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0p6bbvy3m474h57wm3nlg6zz94f3y2d6mhiawmlgg8zbny26kjl2"))))
|
||||||
|
(build-system font-build-system)
|
||||||
|
(home-page "https://velvetyne.fr/fonts/bianzhidai/")
|
||||||
|
(synopsis "BianZhiDai is a font inspired by shading characters in ASCII art and woven plastic bags.")
|
||||||
|
(description "BianZhiDai is a font inspired by shading characters in ASCII art and 编织袋 (woven plastic bag in Simple Chinese). BianZhiDai is good with colors, especially in combination with different fill/stroke colors. Try it, and play it. Besides, the whole font is modular based, so you can customize it in Glyphs any way you like.")
|
||||||
|
(license license:silofl1.1)))
|
||||||
|
|
||||||
|
;; OSP
|
||||||
|
;; http://osp.kitchen/foundry/
|
||||||
|
|
||||||
|
;; http://osp.kitchen/foundry/libertinage/
|
||||||
|
;; https://gitlab.constantvzw.org/osp/foundry.libertinage
|
||||||
|
|
||||||
|
;; http://osp.kitchen/foundry/fluxisch-else/
|
||||||
|
;; https://gitlab.constantvzw.org/osp/foundry.fluxisch-else
|
||||||
|
|
||||||
|
;; http://osp.kitchen/foundry/sans-guilt/
|
||||||
|
;; https://gitlab.constantvzw.org/osp/foundry.sans-guilt
|
||||||
|
|
||||||
|
;; not your type
|
||||||
|
;; https://notyourtype.nl/typefaces/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
;; other / misc
|
||||||
|
|
||||||
|
;; https://github.com/dharmatype/Bebas-Neue
|
||||||
|
|
||||||
|
;; https://github.com/undercasetype/Fraunces
|
||||||
|
|
||||||
|
;; https://github.com/ryanoasis/nerd-fonts
|
||||||
|
|
||||||
|
;; https://github.com/be5invis/Iosevka
|
||||||
|
|
||||||
|
;; https://github.com/githubnext/monaspace
|
||||||
|
|
||||||
|
;; https://github.com/uswds/public-sans
|
||||||
|
|
||||||
|
;; https://github.com/arrowtype/recursive
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
;; testing and/or example
|
||||||
(define-public font-artifika
|
(define-public font-artifika
|
||||||
(package
|
(package
|
||||||
(name "font-artifika")
|
(name "font-artifika")
|
||||||
|
|
Loading…
Reference in a new issue