2017-08-10 19:43:49 +00:00
|
|
|
{stdenv, fetchzip}:
|
2006-12-05 22:28:45 +00:00
|
|
|
|
2017-08-10 19:43:49 +00:00
|
|
|
fetchzip rec {
|
2014-11-03 23:58:01 +00:00
|
|
|
name = "freefont-ttf-20120503";
|
2009-01-06 21:20:33 +00:00
|
|
|
|
2017-08-10 19:43:49 +00:00
|
|
|
url = "mirror://gnu/freefont/${name}.zip";
|
2014-11-03 23:58:01 +00:00
|
|
|
|
2017-08-10 19:43:49 +00:00
|
|
|
postFetch = ''
|
|
|
|
mkdir -p $out/share/fonts
|
|
|
|
unzip -j $downloadedFile \*.ttf -d $out/share/fonts/truetype
|
2008-02-20 23:02:41 +00:00
|
|
|
'';
|
2008-03-29 22:07:15 +00:00
|
|
|
|
2017-08-10 19:43:49 +00:00
|
|
|
sha256 = "0h0x2hhr7kvjiycf7fv800xxwa6hcpiz54bqx06wsqc7z61iklvd";
|
|
|
|
|
2008-03-29 22:07:15 +00: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).
|
|
|
|
'';
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = https://www.gnu.org/software/freefont/;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2010-09-20 20:46:32 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2015-09-23 20:44:28 +00:00
|
|
|
maintainers = [];
|
2008-03-29 22:07:15 +00:00
|
|
|
};
|
2008-02-20 23:02:41 +00:00
|
|
|
}
|