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