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


                                                                                              
 
                           
                                                                    
                                                               
                                                            

                              
    
 
{ stdenv, google-fonts }:

stdenv.mkDerivation {
  pname = "inconsolata";

  inherit (google-fonts) src version;

  installPhase = ''
    install -m644 --target $out/share/fonts/truetype/inconsolata -D $src/ofl/inconsolata/*.ttf
  '';

  meta = with stdenv.lib; {
    homepage = https://www.levien.com/type/myfonts/inconsolata.html;
    description = "A monospace font for both screen and print";
    maintainers = with maintainers; [ mikoim raskin rycee ];
    license = licenses.ofl;
    platforms = platforms.all;
  };
}