2019-08-20 05:32:06 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2019-08-29 02:17:49 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "joypixels";
|
2020-06-28 01:43:11 +02:00
|
|
|
version = "6.0.0";
|
2019-08-20 05:32:06 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-08-06 12:37:25 +02:00
|
|
|
url = "https://cdn.joypixels.com/distributions/nix-os/font/${version}/joypixels-android.ttf";
|
2020-06-28 01:43:11 +02:00
|
|
|
sha256 = "1vxqsqs93g4jyp01r47lrpcm0fmib2n1vysx32ksmfxmprimb75s";
|
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;
|
2020-08-06 12:37:25 +02:00
|
|
|
maintainers = with maintainers; [ toonn jtojnar ];
|
2019-08-20 05:32:06 +02:00
|
|
|
};
|
|
|
|
}
|