2006-12-05 23:28:45 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2008-03-29 23:07:15 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-09-20 22:46:32 +02:00
|
|
|
name = "freefont-ttf-20100919";
|
2009-01-06 22:20:33 +01:00
|
|
|
|
2006-12-05 23:28:45 +01:00
|
|
|
src = fetchurl {
|
2008-03-29 23:07:15 +01:00
|
|
|
url = "mirror://gnu/freefont/${name}.tar.gz";
|
2010-09-20 22:46:32 +02:00
|
|
|
sha256 = "1q3h5jp1mbdkinkwxy0lfd0a1q7azlbagraydlzaa2ng82836wg4";
|
2006-12-05 23:28:45 +01:00
|
|
|
};
|
2008-03-29 23:07:15 +01:00
|
|
|
|
2008-02-21 00:02:41 +01:00
|
|
|
installPhase = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/share/fonts/truetype
|
2008-02-21 00:02:41 +01:00
|
|
|
cp *.ttf $out/share/fonts/truetype
|
|
|
|
'';
|
2008-03-29 23:07:15 +01: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/;
|
2009-01-06 22:20:33 +01:00
|
|
|
license = "GPLv3+";
|
2010-09-20 22:46:32 +02:00
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2013-08-16 23:44:33 +02:00
|
|
|
maintainers = [ ];
|
2008-03-29 23:07:15 +01:00
|
|
|
};
|
2008-02-21 00:02:41 +01:00
|
|
|
}
|