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

24 lines
685 B
Nix
Raw Normal View History

{ lib, fetchzip }:
2015-10-18 06:05:26 +01:00
2017-08-10 20:43:49 +01:00
let
2019-05-12 22:26:00 +01:00
version = "12.1.01";
2017-08-10 20:43:49 +01:00
in fetchzip rec {
name = "unifont_upper-${version}";
2015-10-18 06:05:26 +01: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
2019-05-12 22:26:00 +01:00
sha256 = "11b14ka2w16vssxdhgq7k9bx7xx0sr36hfi2vzyimmaibasi1r74";
2015-10-18 06:05:26 +01:00
meta = with lib; {
2015-10-18 06:05:26 +01:00
description = "Unicode font for glyphs above the Unicode Basic Multilingual Plane";
homepage = http://unifoundry.com/unifont.html;
# Basically GPL2+ with font exception.
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;
};
}