2023-02-02 18:25:31 +00:00
|
|
|
{ lib, stdenvNoCC, fetchurl }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
|
|
pname = "unifont_upper";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "15.0.04";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/unifont/unifont-${version}/${pname}-${version}.ttf";
|
2023-07-15 17:15:38 +00:00
|
|
|
hash = "sha256-7iRcyKfGpv2rjVLPRNchxpXwj0KA5jlgDnCfG7byLLI=";
|
2023-02-02 18:25:31 +00:00
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
dontUnpack = true;
|
2022-06-16 17:23:12 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
2022-06-16 17:23:12 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
install -Dm644 $src $out/share/fonts/truetype/unifont_upper.ttf
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Unicode font for glyphs above the Unicode Basic Multilingual Plane";
|
2021-08-06 21:57:35 +00:00
|
|
|
homepage = "https://unifoundry.com/unifont/";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Basically GPL2+ with font exception.
|
2021-08-06 21:57:35 +00:00
|
|
|
license = "https://unifoundry.com/LICENSE.txt";
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = [ maintainers.mathnerd314 maintainers.vrthra ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|