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

                   
                         
                                 
                  
                                                 
                                                                    
    
 



                                       












                                                                      
 
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "freefont-ttf-20080912";
  src = fetchurl {
    url = "mirror://gnu/freefont/${name}.tar.gz";
    sha256 = "1l6ip2xy4s4xacnz299y7afc4rhvnxb593nn8acxavmr623sh5ir";
  };

  installPhase = ''
    ensureDir $out/share/fonts/truetype
    cp *.ttf $out/share/fonts/truetype
  '';

  meta = {
    description = "GNU Free UCS Outline Fonts";

    longDescription = ''
      The GNU Freefont project aims to provide a set of free outline
      (PostScript Type0, TrueType, OpenType...) fonts covering the ISO
      10646/Unicode UCS (Universal Character Set).
    '';

    homepage = http://www.gnu.org/software/freefont/;
    license = "GPLv2+";
  };
}