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 {
|
2022-10-04 17:54:24 +01:00
|
|
|
pname = "freefont-ttf";
|
|
|
|
version = "20120503";
|
2009-01-06 21:20:33 +00:00
|
|
|
|
2022-10-04 17:54:24 +01:00
|
|
|
url = "mirror://gnu/freefont/freefont-ttf-${version}.zip";
|
2014-11-03 23:58:01 +00:00
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
postFetch = ''
|
2022-10-04 17:54:24 +01:00
|
|
|
mkdir -p $out/share/fonts/truetype
|
|
|
|
mv $out/*.ttf $out/share/fonts/truetype
|
|
|
|
find $out -maxdepth 1 ! -type d -exec rm {} +
|
2008-02-20 23:02:41 +00:00
|
|
|
'';
|
2008-03-29 22:07:15 +00:00
|
|
|
|
2022-10-04 17:54:24 +01:00
|
|
|
sha256 = "sha256-bdMZg/mHYc0N6HiR8uNl0CjeOwBou+OYj3LPkyEUHUA=";
|
2017-08-10 20:43:49 +01:00
|
|
|
|
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
|
|
|
}
|