python312Packages.types-aiobotocore: 2.15.2 -> 2.15.2.post3 (#361801)
[NixPkgs.git] / pkgs / by-name / no / noto-fonts-emoji-blob-bin / package.nix
blob311505c3ae48b83823ada1431081bc0351c727f2
1  { lib
2 , stdenvNoCC
3 , fetchurl
4 }:
6 stdenvNoCC.mkDerivation rec {
7   pname = "noto-fonts-emoji-blob-bin";
8   version = "15.0";
10   src = fetchurl {
11     url = "https://github.com/C1710/blobmoji/releases/download/v${version}/Blobmoji.ttf";
12     hash = "sha256-3MPWZ1A2ups171dNIiFTJ3C1vZiGy6I8ZF70aUfrePk=";
13   };
15   dontUnpack = true;
17   installPhase = ''
18     runHook preInstall
19     install -Dm 444 $src $out/share/fonts/blobmoji/Blobmoji.ttf
20     runHook postInstall
21   '';
23   meta = {
24     description = "Noto Emoji with extended Blob support";
25     homepage = "https://github.com/C1710/blobmoji";
26     license = with lib.licenses; [ ofl asl20 ];
27     platforms = lib.platforms.all;
28     maintainers = with lib.maintainers; [ rileyinman jk ];
29   };