29 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Scheme
		
	
	
	
	
	
		
		
			
		
	
	
			29 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Scheme
		
	
	
	
	
	
| 
								 | 
							
								(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")))))
							 |