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

                               
 
                                                                         
 


                                                                                                     

     
                                                                  
 
                    
                                           





                                                            
{ lib, fetchzip }:

let
  version = "3.0.4";
in fetchzip rec {
  name = "overpass-${version}";

  url = "https://github.com/RedHatBrand/Overpass/archive/${version}.zip";

  postFetch = ''
    mkdir -p $out/share/fonts/opentype ; unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype
    mkdir -p $out/share/doc/${name}    ; unzip -j $downloadedFile \*.md  -d $out/share/doc/${name}
  '';

  sha256 = "13b4yam0nycclccxidzj2fa3nwms5qji7gfkixdnl4ybf0f56b64";

  meta = with lib; {
    homepage = "https://overpassfont.org/";
    description = "Font heavily inspired by Highway Gothic";
    license = licenses.ofl;
    platforms = platforms.all;
    maintainers = [ maintainers.rycee ];
  };
}