1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

Merge pull request #144550 from 06kellyjac/blobmoji

noto-fonts-emoji-blob-bin: 2019-06-14-Emoji-12 -> 14.0.1
This commit is contained in:
Janne Heß 2021-11-05 00:59:06 +01:00 committed by GitHub
commit 8aba57cfc9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -175,27 +175,28 @@ in
}; };
}; };
noto-fonts-emoji-blob-bin = stdenv.mkDerivation rec { noto-fonts-emoji-blob-bin =
pname = "noto-fonts-emoji-blob-bin"; let
version = "2019-06-14-Emoji-12"; pname = "noto-fonts-emoji-blob-bin";
version = "14.0.1";
src = fetchurl { in
fetchurl {
name = "${pname}-${version}";
url = "https://github.com/C1710/blobmoji/releases/download/v${version}/Blobmoji.ttf"; url = "https://github.com/C1710/blobmoji/releases/download/v${version}/Blobmoji.ttf";
sha256 = "0snvymglmvpnfgsriw2cnnqm0f4llav0jvzir6mpd17mqqhhabbh"; sha256 = "sha256-wSH9kRJ8y2i5ZDqzeT96dJcEJnHDSpU8bOhmxaT+UCg=";
downloadToTemp = true;
recursiveHash = true;
postFetch = ''
install -Dm 444 $downloadedFile $out/share/fonts/blobmoji/Blobmoji.ttf
'';
meta = with 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 jk ];
};
}; };
dontUnpack = true;
installPhase = ''
install -D $src $out/share/fonts/blobmoji/Blobmoji.ttf
'';
meta = with 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 ];
};
};
} }