nixpkgs/pkgs/data/fonts/joypixels/default.nix
Jan Tojnar 1a7b8f6817
joypixels: drop fontconfig file
It is now supportedby our fontconfig.
2019-08-29 02:17:49 +02:00

25 lines
607 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "joypixels";
version = "5.0.2";
src = fetchurl {
url = "https://cdn.joypixels.com/arch-linux/font/${version}/joypixels-android.ttf";
sha256 = "0javgnfsh2nfddr5flf4yzi81ar8wx2z8w1q7h4fvdng5fsrgici";
};
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 ];
};
}