2019-05-13 02:55:32 +01:00
|
|
|
{ lib, fetchzip }:
|
2015-10-18 06:05:26 +01:00
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
let
|
2021-01-01 07:44:46 +00:00
|
|
|
version = "13.0.05";
|
2017-08-10 20:43:49 +01:00
|
|
|
in fetchzip rec {
|
|
|
|
name = "unifont_upper-${version}";
|
2015-10-18 06:05:26 +01:00
|
|
|
|
2019-03-02 19:27:48 +00:00
|
|
|
url = "mirror://gnu/unifont/unifont-${version}/${name}.ttf";
|
2015-10-18 06:05:26 +01:00
|
|
|
|
2017-08-10 20:43:49 +01:00
|
|
|
postFetch = "install -Dm644 $downloadedFile $out/share/fonts/truetype/unifont_upper.ttf";
|
2015-10-18 06:05:26 +01:00
|
|
|
|
2021-01-01 07:44:46 +00:00
|
|
|
sha256 = "1cpi44fzsiq3yqg38763awgri1ma46421c3v8167bsxzsx7vzlkp";
|
2015-10-18 06:05:26 +01:00
|
|
|
|
2019-05-13 02:55:32 +01:00
|
|
|
meta = with lib; {
|
2015-10-18 06:05:26 +01:00
|
|
|
description = "Unicode font for glyphs above the Unicode Basic Multilingual Plane";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://unifoundry.com/unifont.html";
|
2015-10-18 06:05:26 +01:00
|
|
|
|
|
|
|
# Basically GPL2+ with font exception.
|
2020-04-01 02:11:51 +01:00
|
|
|
license = "http://unifoundry.com/LICENSE.txt";
|
2016-07-04 18:34:21 +01:00
|
|
|
maintainers = [ maintainers.mathnerd314 maintainers.vrthra ];
|
2015-10-18 06:05:26 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|