2023-01-31 15:35:18 +00:00
|
|
|
{ lib, stdenvNoCC, fetchzip }:
|
2006-12-05 22:28:45 +00:00
|
|
|
|
2023-01-31 15:35:18 +00:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
2022-10-04 16:54:24 +00:00
|
|
|
pname = "freefont-ttf";
|
|
|
|
version = "20120503";
|
2009-01-06 21:20:33 +00:00
|
|
|
|
2023-01-31 15:35:18 +00:00
|
|
|
src = fetchzip {
|
|
|
|
url = "mirror://gnu/freefont/freefont-ttf-${version}.zip";
|
|
|
|
hash = "sha256-K3kVHGcDTxQ7N7XqSdwRObriVkBoBYPKHbyYrYvm7VU=";
|
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
2014-11-03 23:58:01 +00:00
|
|
|
|
2022-10-04 16:54:24 +00:00
|
|
|
mkdir -p $out/share/fonts/truetype
|
2023-01-31 15:35:18 +00:00
|
|
|
mv *.ttf $out/share/fonts/truetype
|
2008-03-29 22:07:15 +00:00
|
|
|
|
2023-01-31 15:35:18 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
2017-08-10 19:43:49 +00: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 01:11:51 +00:00
|
|
|
homepage = "https://www.gnu.org/software/freefont/";
|
2019-05-13 01:55:32 +00:00
|
|
|
license = lib.licenses.gpl3Plus;
|
|
|
|
platforms = lib.platforms.all;
|
2023-01-31 15:35:18 +00:00
|
|
|
maintainers = [ ];
|
2008-03-29 22:07:15 +00:00
|
|
|
};
|
2008-02-20 23:02:41 +00:00
|
|
|
}
|