noto-fonts-emoji-blob-bin: init at 2019-06-14-Emoji-12
This commit is contained in:
parent
85c90b91b6
commit
27e52af5a5
|
@ -2,6 +2,7 @@
|
||||||
, stdenvNoCC
|
, stdenvNoCC
|
||||||
, lib
|
, lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, fetchurl
|
||||||
, fetchzip
|
, fetchzip
|
||||||
, optipng
|
, optipng
|
||||||
, cairo
|
, cairo
|
||||||
|
@ -146,4 +147,28 @@ in
|
||||||
maintainers = with maintainers; [ mathnerd314 ];
|
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 ];
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -17806,7 +17806,7 @@ in
|
||||||
nordic-polar = callPackage ../data/themes/nordic-polar { };
|
nordic-polar = callPackage ../data/themes/nordic-polar { };
|
||||||
|
|
||||||
inherit (callPackages ../data/fonts/noto-fonts {})
|
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 {
|
nullmailer = callPackage ../servers/mail/nullmailer {
|
||||||
stdenv = gccStdenv;
|
stdenv = gccStdenv;
|
||||||
|
|
Loading…
Reference in New Issue