Merge pull request #69734 from rileyinman/blobmoji

noto-fonts-emoji-blob-bin: init at 2019-06-14-Emoji-12

authored by Lassulus and committed by GitHub 9480bae3 c04e9557

+26 -1
+25
pkgs/data/fonts/noto-fonts/default.nix
··· 2 2 , stdenvNoCC 3 3 , lib 4 4 , fetchFromGitHub 5 + , fetchurl 5 6 , fetchzip 6 7 , optipng 7 8 , cairo ··· 144 145 license = with licenses; [ ofl asl20 ]; 145 146 platforms = platforms.all; 146 147 maintainers = with maintainers; [ mathnerd314 ]; 148 + }; 149 + }; 150 + 151 + noto-fonts-emoji-blob-bin = stdenv.mkDerivation rec { 152 + pname = "noto-fonts-emoji-blob-bin"; 153 + version = "2019-06-14-Emoji-12"; 154 + 155 + src = fetchurl { 156 + url = "https://github.com/C1710/blobmoji/releases/download/v${version}/Blobmoji.ttf"; 157 + sha256 = "0snvymglmvpnfgsriw2cnnqm0f4llav0jvzir6mpd17mqqhhabbh"; 158 + }; 159 + 160 + dontUnpack = true; 161 + 162 + installPhase = '' 163 + install -D $src $out/share/fonts/blobmoji/Blobmoji.ttf 164 + ''; 165 + 166 + meta = with stdenv.lib; { 167 + description = "Noto Emoji with extended Blob support"; 168 + homepage = https://github.com/C1710/blobmoji; 169 + license = with licenses; [ ofl asl20 ]; 170 + platforms = platforms.all; 171 + maintainers = with maintainers; [ rileyinman ]; 147 172 }; 148 173 }; 149 174 }
+1 -1
pkgs/top-level/all-packages.nix
··· 18288 18288 nordic-polar = callPackage ../data/themes/nordic-polar { }; 18289 18289 18290 18290 inherit (callPackages ../data/fonts/noto-fonts {}) 18291 - noto-fonts noto-fonts-cjk noto-fonts-emoji noto-fonts-extra; 18291 + noto-fonts noto-fonts-cjk noto-fonts-emoji noto-fonts-emoji-blob-bin noto-fonts-extra; 18292 18292 18293 18293 nullmailer = callPackage ../servers/mail/nullmailer { 18294 18294 stdenv = gccStdenv;