nixpkgs/pkgs/data/fonts/unifont_upper/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
687 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2015-10-18 05:05:26 +00:00
2017-08-10 19:43:49 +00:00
let
2022-04-20 07:36:18 +00:00
version = "14.0.03";
2017-08-10 19:43:49 +00:00
in fetchzip rec {
name = "unifont_upper-${version}";
2015-10-18 05:05:26 +00:00
url = "mirror://gnu/unifont/unifont-${version}/${name}.ttf";
2015-10-18 05:05:26 +00:00
2017-08-10 19:43:49 +00:00
postFetch = "install -Dm644 $downloadedFile $out/share/fonts/truetype/unifont_upper.ttf";
2015-10-18 05:05:26 +00:00
2022-04-20 07:36:18 +00:00
sha256 = "1lwx7syb9ij4dlqiiybp6xgvar2sszxphvaqh64vivzj9gp0g0ai";
2015-10-18 05:05:26 +00:00
meta = with lib; {
2015-10-18 05:05:26 +00:00
description = "Unicode font for glyphs above the Unicode Basic Multilingual Plane";
2021-08-05 20:57:53 +00:00
homepage = "https://unifoundry.com/unifont/";
2015-10-18 05:05:26 +00:00
# Basically GPL2+ with font exception.
2021-08-05 20:57:53 +00:00
license = "https://unifoundry.com/LICENSE.txt";
2016-07-04 17:34:21 +00:00
maintainers = [ maintainers.mathnerd314 maintainers.vrthra ];
2015-10-18 05:05:26 +00:00
platforms = platforms.all;
};
}