Put in earplugs

This commit is contained in:
nik gaffney 2024-05-08 11:06:55 +02:00
parent 5f790fbf9d
commit daa79e5418
Signed by: nik
GPG key ID: 989F5E6EDB478160

View file

@ -21,7 +21,7 @@
;; 0xType is a type foundry specialized in programming fonts.
;; https://0xtype.dev/
(define-module (zzkt packages fonts)
(define-module (zzkt packages fonts-0xProto)
#:use-module (ice-9 regex)
#:use-module (guix utils)
#:use-module ((guix licenses)
@ -33,6 +33,25 @@
#:use-module (guix build-system font)
#:use-module (guix build-system trivial))
;; a metapackage for all packaged fonts
(define-public font-collection-0xType
(package
(name "font-collection-0xType")
(version "0.1")
(source #f)
(build-system trivial-build-system)
(arguments
'(#:builder (begin
(mkdir %output) #t)))
(propagated-inputs (list font-0xProto
font-0xPropo))
(synopsis "A collection of fonts from 0xType")
(home-page "https://0xtype.dev/")
(description
"A collection of fonts from 0xType including 0xProto and 0xPropo")
(license license:silofl1.1)))
(define-public font-0xProto
(package
(name "font-0xProto")