26 lines
		
	
	
		
			633 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			633 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { lib, fetchzip }:
 | |
| 
 | |
| let
 | |
|   version = "3.15";
 | |
| in fetchzip {
 | |
|   name = "inter-${version}";
 | |
| 
 | |
|   url = "https://github.com/rsms/inter/releases/download/v${version}/Inter-${version}.zip";
 | |
| 
 | |
|   postFetch = ''
 | |
|     mkdir -p $out/share/fonts/opentype
 | |
|     unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
 | |
|   '';
 | |
| 
 | |
|   sha256 = "0dnxczy2avc47wq5fc3psd1zbxbsjz5w24rkh5ynrfgw6n0753n0";
 | |
| 
 | |
|   meta = with lib; {
 | |
|     homepage = "https://rsms.me/inter/";
 | |
|     description = "A typeface specially designed for user interfaces";
 | |
|     license = licenses.ofl;
 | |
|     platforms = platforms.all;
 | |
|     maintainers = with maintainers; [ demize dtzWill ];
 | |
|   };
 | |
| }
 | |
| 
 | 
