2014-11-03 15:58:01 -08:00
|
|
|
{stdenv, fetchurl, unzip}:
|
2006-12-05 14:28:45 -08:00
|
|
|
|
2008-03-29 15:07:15 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2014-11-03 15:58:01 -08:00
|
|
|
name = "freefont-ttf-20120503";
|
2009-01-06 13:20:33 -08:00
|
|
|
|
2006-12-05 14:28:45 -08:00
|
|
|
src = fetchurl {
|
2014-11-03 15:58:01 -08:00
|
|
|
url = "mirror://gnu/freefont/${name}.zip";
|
|
|
|
sha256 = "1bw9mrf5pqi2a29b7qw4nhhj566aqqmi28hkbn2a38c2pzqvm1bw";
|
2006-12-05 14:28:45 -08:00
|
|
|
};
|
2008-03-29 15:07:15 -07:00
|
|
|
|
2014-11-03 15:58:01 -08:00
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
2008-02-20 15:02:41 -08:00
|
|
|
installPhase = ''
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p $out/share/fonts/truetype
|
2008-02-20 15:02:41 -08:00
|
|
|
cp *.ttf $out/share/fonts/truetype
|
|
|
|
'';
|
2008-03-29 15:07:15 -07:00
|
|
|
|
|
|
|
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/;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2010-09-20 13:46:32 -07:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2013-08-16 14:44:33 -07:00
|
|
|
maintainers = [ ];
|
2008-03-29 15:07:15 -07:00
|
|
|
};
|
2008-02-20 15:02:41 -08:00
|
|
|
}
|