forked from mirrors/nixpkgs
unifont_upper: 14.0.03 -> 14.0.04
This commit is contained in:
parent
974b4fbe48
commit
249a7736f5
|
@ -1,15 +1,19 @@
|
||||||
{ lib, fetchzip }:
|
{ lib, fetchurl }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "14.0.03";
|
version = "14.0.04";
|
||||||
in fetchzip rec {
|
in fetchurl rec {
|
||||||
name = "unifont_upper-${version}";
|
name = "unifont_upper-${version}";
|
||||||
|
|
||||||
url = "mirror://gnu/unifont/unifont-${version}/${name}.ttf";
|
url = "mirror://gnu/unifont/unifont-${version}/${name}.ttf";
|
||||||
|
|
||||||
|
downloadToTemp = true;
|
||||||
|
|
||||||
|
recursiveHash = true;
|
||||||
|
|
||||||
postFetch = "install -Dm644 $downloadedFile $out/share/fonts/truetype/unifont_upper.ttf";
|
postFetch = "install -Dm644 $downloadedFile $out/share/fonts/truetype/unifont_upper.ttf";
|
||||||
|
|
||||||
sha256 = "1lwx7syb9ij4dlqiiybp6xgvar2sszxphvaqh64vivzj9gp0g0ai";
|
hash = "sha256-cNw+3Y/6h2TD6ZSaGO32NNyiTwCUSJsA3Q5W5/m+eLE=";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Unicode font for glyphs above the Unicode Basic Multilingual Plane";
|
description = "Unicode font for glyphs above the Unicode Basic Multilingual Plane";
|
||||||
|
|
Loading…
Reference in a new issue