2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2019-11-07 17:14:02 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, autoreconfHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "cldr-emoji-annotation";
|
2020-08-01 21:59:48 +01:00
|
|
|
version = "37.0_13.0_0_2";
|
2019-11-07 17:14:02 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fujiwarat";
|
|
|
|
repo = "cldr-emoji-annotation";
|
|
|
|
rev = version;
|
2020-08-01 21:59:48 +01:00
|
|
|
sha256 = "0la3h6l58j9jfjvzwz65x56ijx7sppirwpqbqc06if4c2g0kzswj";
|
2019-11-07 17:14:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-11-07 17:14:02 +00:00
|
|
|
description = "Emoji annotation files in CLDR";
|
|
|
|
homepage = "https://www.unicode.org/";
|
2020-03-27 21:15:03 +00:00
|
|
|
license = licenses.unicode-dfs-2016;
|
2019-11-07 17:14:02 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|