The DMBCS Guix channel.
This commit is contained in:
commit
2ea5ab7cc2
8 changed files with 596 additions and 0 deletions
28
packages/hack-font.scm
Normal file
28
packages/hack-font.scm
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
(define-module (packages hack-font)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix build-system font)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (gnu packages gawk))
|
||||
|
||||
|
||||
(define-public hack-font
|
||||
(package
|
||||
(name "hack-font")
|
||||
(version "3.003")
|
||||
(source (origin (method url-fetch)
|
||||
(uri "https://github.com/source-foundry/Hack/releases/download/v3.003/Hack-v3.003-ttf.zip")
|
||||
(sha256 (base32 "1b4hh8zkrx92m2v2vfkja1napb0192p0j3laqr0m018z3dih89hc"))))
|
||||
(build-system font-build-system)
|
||||
(synopsis "A typeface designed for source code")
|
||||
(description
|
||||
(string-append "A workhorse for code. No frills. No gimmicks. "
|
||||
"Hack is hand-groomed and optically balanced to be "
|
||||
"your go-to code face."))
|
||||
(home-page "https://sourcefoundry.org/hack/")
|
||||
(license
|
||||
;; See https://github.com/source-foundry/Hack/issues/271 for details.
|
||||
(list license:expat ; the Hack modifications to...
|
||||
license:public-domain ; ...the DejaVu modifications to...
|
||||
(license:x11-style ; ...the Bitstream Vera typeface
|
||||
"file://LICENSE.md" "Bitstream Vera License")))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue