2019-08-20 05:32:06 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2019-08-29 02:17:49 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "joypixels";
|
2020-04-03 01:40:32 +02:00
|
|
|
version = "5.5.0";
|
2019-08-20 05:32:06 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://cdn.joypixels.com/arch-linux/font/${version}/joypixels-android.ttf";
|
2020-06-02 22:44:52 +02:00
|
|
|
sha256 = "0w3r50l0knrncwv6zihyx01gs995y76xjcwsysx5bmvc1b43yijb";
|
2019-08-20 05:32:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
dontUnpack = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm644 $src $out/share/fonts/truetype/joypixels.ttf
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Emoji as a Service (formerly EmojiOne)";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.joypixels.com/";
|
2019-08-20 05:32:06 +02:00
|
|
|
license = licenses.unfree;
|
|
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
|
|
};
|
|
|
|
}
|