nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #144550 from 06kellyjac/blobmoji

noto-fonts-emoji-blob-bin: 2019-06-14-Emoji-12 -> 14.0.1

authored by

Janne Heß and committed by
GitHub
8aba57cf 7d40866a

+22 -21
+22 -21
pkgs/data/fonts/noto-fonts/default.nix
··· 175 175 }; 176 176 }; 177 177 178 - noto-fonts-emoji-blob-bin = stdenv.mkDerivation rec { 179 - pname = "noto-fonts-emoji-blob-bin"; 180 - version = "2019-06-14-Emoji-12"; 181 - 182 - src = fetchurl { 178 + noto-fonts-emoji-blob-bin = 179 + let 180 + pname = "noto-fonts-emoji-blob-bin"; 181 + version = "14.0.1"; 182 + in 183 + fetchurl { 184 + name = "${pname}-${version}"; 183 185 url = "https://github.com/C1710/blobmoji/releases/download/v${version}/Blobmoji.ttf"; 184 - sha256 = "0snvymglmvpnfgsriw2cnnqm0f4llav0jvzir6mpd17mqqhhabbh"; 186 + sha256 = "sha256-wSH9kRJ8y2i5ZDqzeT96dJcEJnHDSpU8bOhmxaT+UCg="; 187 + 188 + downloadToTemp = true; 189 + recursiveHash = true; 190 + postFetch = '' 191 + install -Dm 444 $downloadedFile $out/share/fonts/blobmoji/Blobmoji.ttf 192 + ''; 193 + 194 + meta = with lib; { 195 + description = "Noto Emoji with extended Blob support"; 196 + homepage = "https://github.com/C1710/blobmoji"; 197 + license = with licenses; [ ofl asl20 ]; 198 + platforms = platforms.all; 199 + maintainers = with maintainers; [ rileyinman jk ]; 200 + }; 185 201 }; 186 - 187 - dontUnpack = true; 188 - 189 - installPhase = '' 190 - install -D $src $out/share/fonts/blobmoji/Blobmoji.ttf 191 - ''; 192 - 193 - meta = with lib; { 194 - description = "Noto Emoji with extended Blob support"; 195 - homepage = "https://github.com/C1710/blobmoji"; 196 - license = with licenses; [ ofl asl20 ]; 197 - platforms = platforms.all; 198 - maintainers = with maintainers; [ rileyinman ]; 199 - }; 200 - }; 201 202 }