Update blobmoji to 15
This commit is contained in:
parent
6950c8c4ec
commit
e1b60f6145
|
@ -1,6 +1,24 @@
|
||||||
{ pkgs, lib, config, ... }:
|
{ pkgs, lib, config, ... }:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
let
|
||||||
|
noto-fonts-emoji-blob-bin =
|
||||||
|
let
|
||||||
|
pname = "noto-fonts-emoji-blob-bin";
|
||||||
|
version = "15.0";
|
||||||
|
in
|
||||||
|
pkgs.fetchurl {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
url = "https://github.com/C1710/blobmoji/releases/download/v${version}/Blobmoji.ttf";
|
||||||
|
sha256 = "sha256-n5yVk2w9x7UVrMe0Ho6nwu1Z9E/ktjo1UHdHKStoJWc=";
|
||||||
|
|
||||||
|
downloadToTemp = true;
|
||||||
|
recursiveHash = true;
|
||||||
|
postFetch = ''
|
||||||
|
install -Dm 444 $downloadedFile $out/share/fonts/blobmoji/Blobmoji.ttf
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
in
|
||||||
{
|
{
|
||||||
# Fonts
|
# Fonts
|
||||||
config.fonts = {
|
config.fonts = {
|
||||||
|
@ -27,3 +45,4 @@ with lib;
|
||||||
fontDir.enable = true;
|
fontDir.enable = true;
|
||||||
} else { });
|
} else { });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue