gnu: Add font-iosevka-term-slab.
* gnu/packages/fonts.scm (font-iosevka-term-slab): New variable. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
parent
53eaf69d6d
commit
0161862d9d
1 changed files with 23 additions and 0 deletions
|
@ -31,6 +31,7 @@
|
||||||
;;; Copyright © 2020 Damien Cassou <damien@cassou.me>
|
;;; Copyright © 2020 Damien Cassou <damien@cassou.me>
|
||||||
;;; Copyright © 2020 Amin Bandali <bandali@gnu.org>
|
;;; Copyright © 2020 Amin Bandali <bandali@gnu.org>
|
||||||
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
|
||||||
|
;;; Copyright © 2020 John Soo <jsoo1@asu.edu>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -1177,6 +1178,28 @@ programming. Iosevka is completely generated from its source code.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1rkmgi08kknc1fg54zpa6w92m3b3v7pc8cpwygz22kgd2h0mdrr8"))))))
|
(base32 "1rkmgi08kknc1fg54zpa6w92m3b3v7pc8cpwygz22kgd2h0mdrr8"))))))
|
||||||
|
|
||||||
|
(define-public font-iosevka-term-slab
|
||||||
|
(package
|
||||||
|
(inherit font-iosevka)
|
||||||
|
(name "font-iosevka-term-slab")
|
||||||
|
(version (package-version font-iosevka))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch/zipbomb)
|
||||||
|
(uri (string-append "https://github.com/be5invis/Iosevka"
|
||||||
|
"/releases/download/v" version
|
||||||
|
"/06-iosevka-term-slab-" version ".zip"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1gc16hih157qy6vpa8f88psq0fnksiigi3msqazc75zsm3z4kzqj"))))
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'install 'make-files-writable
|
||||||
|
(lambda _
|
||||||
|
(for-each make-file-writable (find-files "." ".*"))
|
||||||
|
#t)))))))
|
||||||
|
|
||||||
(define-public font-go
|
(define-public font-go
|
||||||
(let ((commit "f03a046406d4d7fbfd4ed29f554da8f6114049fc")
|
(let ((commit "f03a046406d4d7fbfd4ed29f554da8f6114049fc")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
Reference in a new issue