From da43362af598bd5d0d7a15b0aa83ec67b27dcc34 Mon Sep 17 00:00:00 2001 From: emaryn Date: Mon, 16 Jun 2025 12:57:53 +0800 Subject: [PATCH] unicode-emoji: 16.0 -> 17.0 --- pkgs/by-name/un/unicode-emoji/package.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/un/unicode-emoji/package.nix b/pkgs/by-name/un/unicode-emoji/package.nix index 7751b455393a..84d08627bf89 100644 --- a/pkgs/by-name/un/unicode-emoji/package.nix +++ b/pkgs/by-name/un/unicode-emoji/package.nix @@ -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; }; }