2019-05-13 02:55:32 +01:00
|
|
|
{ lib, fetchzip }:
|
2006-12-05 22:28:45 +00:00
|
|
|
|
2017-08-10 20:43:49 +01: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 20:43:49 +01:00
|
|
|
url = "mirror://gnu/freefont/${name}.zip";
|
2014-11-03 23:58:01 +00:00
|
|
|
|
2017-08-10 20:43:49 +01: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 20:43:49 +01: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).
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/freefont/";
|
2019-05-13 02:55:32 +01:00
|
|
|
license = lib.licenses.gpl3Plus;
|
|
|
|
platforms = lib.platforms.all;
|
2015-09-23 21:44:28 +01:00
|
|
|
maintainers = [];
|
2008-03-29 22:07:15 +00:00
|
|
|
};
|
2008-02-20 23:02:41 +00:00
|
|
|
}
|