mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
23 lines
695 B
Nix
23 lines
695 B
Nix
{ stdenv, fetchzip }:
|
|
|
|
let
|
|
version = "12.0.01";
|
|
in fetchzip rec {
|
|
name = "unifont_upper-${version}";
|
|
|
|
url = "mirror://gnu/unifont/unifont-${version}/${name}.ttf";
|
|
|
|
postFetch = "install -Dm644 $downloadedFile $out/share/fonts/truetype/unifont_upper.ttf";
|
|
|
|
sha256 = "1mmbndyi91fcdj7ykk5y7rypmm5jf2zf5pp5ab8hq3aa9y7invw3";
|
|
|
|
meta = with stdenv.lib; {
|
|
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;
|
|
maintainers = [ maintainers.mathnerd314 maintainers.vrthra ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|