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
commit 9480bae337
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 ];
};
};
}

View file

@ -18288,7 +18288,7 @@ in
nordic-polar = callPackage ../data/themes/nordic-polar { };
inherit (callPackages ../data/fonts/noto-fonts {})
noto-fonts noto-fonts-cjk noto-fonts-emoji noto-fonts-extra;
noto-fonts noto-fonts-cjk noto-fonts-emoji noto-fonts-emoji-blob-bin noto-fonts-extra;
nullmailer = callPackage ../servers/mail/nullmailer {
stdenv = gccStdenv;