summary refs log blame commit diff
path: root/pkgs/data/fonts/unifont_upper/default.nix
blob: 04480aaeec721b5524bc7d0c8af756565009e3e7 (plain) (tree)
1
2
3
4
5
6
7
8
9
                  
 
   
                      

                                    
 
                                                              
 
                                                                                           
 
                                                                  
 
                    
                                                                                       
                                                    

                                          
                                                  
                                                                 


                              
{ lib, fetchzip }:

let
  version = "13.0.05";
in fetchzip rec {
  name = "unifont_upper-${version}";

  url = "mirror://gnu/unifont/unifont-${version}/${name}.ttf";

  postFetch = "install -Dm644 $downloadedFile $out/share/fonts/truetype/unifont_upper.ttf";

  sha256 = "1cpi44fzsiq3yqg38763awgri1ma46421c3v8167bsxzsx7vzlkp";

  meta = with lib; {
    description = "Unicode font for glyphs above the Unicode Basic Multilingual Plane";
    homepage = "http://unifoundry.com/unifont.html";

    # Basically GPL2+ with font exception.
    license = "http://unifoundry.com/LICENSE.txt";
    maintainers = [ maintainers.mathnerd314 maintainers.vrthra ];
    platforms = platforms.all;
  };
}