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

authored by Peder Bergebakken Sundt and committed by GitHub 820eacf9 35ac0fa5

+7 -7
+7 -7
pkgs/by-name/un/unicode-emoji/package.nix
··· 6 6 }: 7 7 8 8 let 9 - version = "16.0"; 9 + version = "17.0"; 10 10 11 11 fetchData = 12 12 { suffix, hash }: ··· 35 35 srcs = { 36 36 emoji-sequences = fetchData { 37 37 suffix = "sequences"; 38 - hash = "sha256-P+PHfnLo8m3zAtx9mbEGxdCP2Ajvckb7XUUC1ln+ZZw="; 38 + hash = "sha256-M1txywy3BISmMxoXYzGmg+LOafAdZOtAPu5mnE1XA5g="; 39 39 }; 40 40 emoji-test = fetchData { 41 41 suffix = "test"; 42 - hash = "sha256-JPDFNOhs8ULiSWlT6PDkaj5wI5KRHt3NKcbM7YUTlpc="; 42 + hash = "sha256-EYHEVX845REBhFBFD51CV02qiA0TQ9WsYfE0h34+veU="; 43 43 }; 44 44 emoji-zwj-sequences = fetchData { 45 45 suffix = "zwj-sequences"; 46 - hash = "sha256-lCPsI1R0NW+XCmllBnN+LV1lRTpn9F32a4u+kgw/q4M="; 46 + hash = "sha256-WyVEHa7SMisGjF5wzaUilGpPAnTfhkRFoZZakuX8XK0="; 47 47 }; 48 48 }; 49 49 in ··· 55 55 56 56 passthru = srcs; 57 57 58 - meta = with lib; { 58 + meta = { 59 59 description = "Unicode Emoji Data Files"; 60 60 homepage = "https://home.unicode.org/emoji/"; 61 - license = licenses.unicode-dfs-2016; 62 - platforms = platforms.all; 61 + license = lib.licenses.unicode-dfs-2016; 62 + platforms = lib.platforms.all; 63 63 }; 64 64 }