23 lines
		
	
	
		
			641 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			641 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { lib, fetchzip }:
 | |
| 
 | |
| let
 | |
|   version = "2.0";
 | |
| in
 | |
| fetchzip {
 | |
|   name = "ultimate-oldschool-pc-font-pack-${version}";
 | |
|   url = "https://int10h.org/oldschool-pc-fonts/download/oldschool_pc_font_pack_v${version}_ttf.zip";
 | |
|   sha256 = "0z0fw6ni7iq806y4m83xrfx46r14xxxql09ch2gxjqi062awqyh8";
 | |
| 
 | |
|   postFetch= ''
 | |
|     mkdir -p $out/share/fonts/truetype
 | |
|     unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
 | |
|   '';
 | |
| 
 | |
|   meta = with lib; {
 | |
|     description = "The Ultimate Oldschool PC Font Pack (TTF Fonts)";
 | |
|     homepage = "https://int10h.org/oldschool-pc-fonts/";
 | |
|     license = licenses.cc-by-sa-40;
 | |
|     maintainers = [ maintainers.endgame ];
 | |
|   };
 | |
| }
 | 
