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