nixpkgs-suyu/pkgs/data/fonts/joypixels/default.nix

25 lines
609 B
Nix
Raw Normal View History

2019-08-20 05:32:06 +02:00
{ stdenv, fetchurl }:
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";
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)";
homepage = "https://www.joypixels.com/";
2019-08-20 05:32:06 +02:00
license = licenses.unfree;
maintainers = with maintainers; [ jtojnar ];
};
}