apple-color-emoji: init at 18.4
This commit is contained in:
parent
b3c6a87a29
commit
dc700042fd
28
pkgs/apple-color-emoji/package.nix
Normal file
28
pkgs/apple-color-emoji/package.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user