Skip to content

Commit

Permalink
Put in earplugs
Browse files Browse the repository at this point in the history
  • Loading branch information
zzkt committed May 8, 2024
1 parent 5f790fb commit daa79e5
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion channel/zzkt/packages/fonts-0xType.scm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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")
Expand Down

0 comments on commit daa79e5

Please sign in to comment.