forked from mirrors/nixpkgs
28 lines
735 B
Nix
28 lines
735 B
Nix
{ lib, fetchurl }:
|
|
|
|
let
|
|
version = "15.0.01";
|
|
in fetchurl rec {
|
|
name = "unifont_upper-${version}";
|
|
|
|
url = "mirror://gnu/unifont/unifont-${version}/${name}.ttf";
|
|
|
|
downloadToTemp = true;
|
|
|
|
recursiveHash = true;
|
|
|
|
postFetch = "install -Dm644 $downloadedFile $out/share/fonts/truetype/unifont_upper.ttf";
|
|
|
|
hash = "sha256-cGX9umTGRfrQT3gwPgNqxPHB7Un3ZT3b7hPy4IP45Fk=";
|
|
|
|
meta = with lib; {
|
|
description = "Unicode font for glyphs above the Unicode Basic Multilingual Plane";
|
|
homepage = "https://unifoundry.com/unifont/";
|
|
|
|
# Basically GPL2+ with font exception.
|
|
license = "https://unifoundry.com/LICENSE.txt";
|
|
maintainers = [ maintainers.mathnerd314 maintainers.vrthra ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|