28 lines
706 B
Nix
28 lines
706 B
Nix
{ lib, stdenvNoCC, fetchurl }:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "last-resort";
|
|
version = "15.100";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/unicode-org/last-resort-font/releases/download/${version}/LastResortHE-Regular.ttf";
|
|
hash = "sha256-dPk6j7Orh1bg6GyzwsB4P9oQvepvl51YF4abpyhOVso=";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D -m 0644 $src $out/share/fonts/truetype/LastResortHE-Regular.ttf
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Fallback font of last resort";
|
|
homepage = "https://github.com/unicode-org/last-resort-font";
|
|
license = licenses.ofl;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|