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



                                                                             
                                                                                                                      
 

                                                              
                   
                                                  
     
                                                                  
 
                    






                                                
{ lib, buildPackages, fetchzip }:

let
  version = "0.701";
in fetchzip {
  name = "vegur-font-${version}";

  # Upstream doesn't version their URLs.
  # http://dotcolon.net/font/vegur/ → http://dotcolon.net/DL/font/vegur.zip
  url = "http://download.opensuse.org/repositories/M17N:/fonts/SLE_12_SP3/src/dotcolon-vegur-fonts-0.701-1.4.src.rpm";

  postFetch = ''
    ${buildPackages.rpmextract}/bin/rpmextract $downloadedFile
    unzip vegur.zip
    install -m444 -Dt $out/share/fonts/Vegur *.otf
  '';
  sha256 = "0iisi2scq72lyj7pc1f36fhfjnm676n5byl4zaavhbxpdrbc6d1v";

  meta = with lib; {
    homepage = http://dotcolon.net/font/vegur/;
    description = "A humanist sans serif font.";
    platforms = platforms.all;
    maintainers = [ maintainers.samueldr ];
    license = licenses.cc0;
  };
}