nixpkgs/pkgs/data/fonts/joypixels/default.nix
2020-06-28 01:43:48 +02:00

25 lines
609 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "joypixels";
version = "6.0.0";
src = fetchurl {
url = "https://cdn.joypixels.com/arch-linux/font/${version}/joypixels-android.ttf";
sha256 = "1vxqsqs93g4jyp01r47lrpcm0fmib2n1vysx32ksmfxmprimb75s";
};
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/";
license = licenses.unfree;
maintainers = with maintainers; [ jtojnar ];
};
}