unicode-emoji: 16.0 -> 17.0 (#417134)

This commit is contained in:
Peder Bergebakken Sundt
2025-06-17 02:58:33 +02:00
committed by GitHub
+7 -7
View File
@@ -6,7 +6,7 @@
}:
let
version = "16.0";
version = "17.0";
fetchData =
{ suffix, hash }:
@@ -35,15 +35,15 @@ let
srcs = {
emoji-sequences = fetchData {
suffix = "sequences";
hash = "sha256-P+PHfnLo8m3zAtx9mbEGxdCP2Ajvckb7XUUC1ln+ZZw=";
hash = "sha256-M1txywy3BISmMxoXYzGmg+LOafAdZOtAPu5mnE1XA5g=";
};
emoji-test = fetchData {
suffix = "test";
hash = "sha256-JPDFNOhs8ULiSWlT6PDkaj5wI5KRHt3NKcbM7YUTlpc=";
hash = "sha256-EYHEVX845REBhFBFD51CV02qiA0TQ9WsYfE0h34+veU=";
};
emoji-zwj-sequences = fetchData {
suffix = "zwj-sequences";
hash = "sha256-lCPsI1R0NW+XCmllBnN+LV1lRTpn9F32a4u+kgw/q4M=";
hash = "sha256-WyVEHa7SMisGjF5wzaUilGpPAnTfhkRFoZZakuX8XK0=";
};
};
in
@@ -55,10 +55,10 @@ symlinkJoin {
passthru = srcs;
meta = with lib; {
meta = {
description = "Unicode Emoji Data Files";
homepage = "https://home.unicode.org/emoji/";
license = licenses.unicode-dfs-2016;
platforms = platforms.all;
license = lib.licenses.unicode-dfs-2016;
platforms = lib.platforms.all;
};
}