Merge pull request #69734 from rileyinman/blobmoji

noto-fonts-emoji-blob-bin: init at 2019-06-14-Emoji-12
This commit is contained in:
Lassulus
2020-06-18 09:06:33 +02:00
committed by GitHub
2 changed files with 26 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
, stdenvNoCC
, lib
, fetchFromGitHub
, fetchurl
, fetchzip
, optipng
, cairo
@@ -146,4 +147,28 @@ in
maintainers = with maintainers; [ mathnerd314 ];
};
};
noto-fonts-emoji-blob-bin = stdenv.mkDerivation rec {
pname = "noto-fonts-emoji-blob-bin";
version = "2019-06-14-Emoji-12";
src = fetchurl {
url = "https://github.com/C1710/blobmoji/releases/download/v${version}/Blobmoji.ttf";
sha256 = "0snvymglmvpnfgsriw2cnnqm0f4llav0jvzir6mpd17mqqhhabbh";
};
dontUnpack = true;
installPhase = ''
install -D $src $out/share/fonts/blobmoji/Blobmoji.ttf
'';
meta = with stdenv.lib; {
description = "Noto Emoji with extended Blob support";
homepage = https://github.com/C1710/blobmoji;
license = with licenses; [ ofl asl20 ];
platforms = platforms.all;
maintainers = with maintainers; [ rileyinman ];
};
};
}