apple-color-emoji: init at 18.4

This commit is contained in:
Jordan Holt 2025-04-18 15:51:38 +01:00
parent b3c6a87a29
commit dc700042fd
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520

View File

@ -0,0 +1,28 @@
{
stdenv,
fetchurl,
lib,
}:
stdenv.mkDerivation rec {
pname = "apple-color-emoji";
version = "18.4";
src = fetchurl {
url = "https://github.com/samuelngs/apple-emoji-linux/releases/download/v${version}/AppleColorEmoji.ttf";
hash = "sha256-pP0He9EUN7SUDYzwj0CE4e39SuNZ+SVz7FdmUviF6r0=";
};
dontUnpack = true;
installPhase = ''
install -Dm644 $src -t $out/share/fonts/truetype
'';
meta = {
description = "Apple Color Emoji for Linux";
longDescription = "Brings Apple's vibrant emojis to your Linux experience";
homepage = "https://github.com/samuelngs/apple-emoji-linux";
license = lib.licenses.unfree;
platforms = lib.platforms.unix;
};
}