2023-01-30 12:22:54 +00:00
|
|
|
{ lib, stdenvNoCC, fetchurl }:
|
2021-04-26 11:26:08 +00:00
|
|
|
|
2023-01-30 12:22:54 +00:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
|
|
pname = "last-resort";
|
2023-01-06 12:13:28 +00:00
|
|
|
version = "15.000";
|
2021-04-26 11:26:08 +00:00
|
|
|
|
2023-01-30 12:22:54 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/unicode-org/last-resort-font/releases/download/${version}/LastResortHE-Regular.ttf";
|
|
|
|
hash = "sha256-Qyo/tuBvBHnG/LW8sUAy62xpeqlXfyfwjUCbr4vJEag=";
|
|
|
|
};
|
2021-04-26 11:26:08 +00:00
|
|
|
|
2023-01-30 12:22:54 +00:00
|
|
|
dontUnpack = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
2021-04-26 11:26:08 +00:00
|
|
|
|
2023-01-30 12:22:54 +00:00
|
|
|
install -D -m 0644 $src $out/share/fonts/truetype/LastResortHE-Regular.ttf
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
2021-04-26 11:26:08 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Fallback font of last resort";
|
|
|
|
homepage = "https://github.com/unicode-org/last-resort-font";
|
|
|
|
license = licenses.ofl;
|
|
|
|
maintainers = with maintainers; [ V ];
|
|
|
|
};
|
|
|
|
}
|