about summary refs log tree commit diff
path: root/pkgs/data/misc
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-04-26 00:13:05 +0000
committerGitHub <noreply@github.com>2022-04-26 00:13:05 +0000
commit8022f7155904c3f9f1ea82105f9780c5ea1b4f96 (patch)
tree9fbc3247b8351da800fd91750f907151a1cf882f /pkgs/data/misc
parent342fd01262aca116122c36713035c9838408c380 (diff)
parent521a9b43bbd895a658932e30c6045b0c13aa1ee5 (diff)
Merge master into haskell-updates
Diffstat (limited to 'pkgs/data/misc')
-rw-r--r--pkgs/data/misc/cldr-emoji-annotation/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/data/misc/cldr-emoji-annotation/default.nix b/pkgs/data/misc/cldr-emoji-annotation/default.nix
deleted file mode 100644
index e51f5639cbc64..0000000000000
--- a/pkgs/data/misc/cldr-emoji-annotation/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ lib, stdenv
-, fetchFromGitHub
-, autoreconfHook
-}:
-
-stdenv.mkDerivation rec {
-  pname = "cldr-emoji-annotation";
-  version = "37.0_13.0_0_2";
-
-  src = fetchFromGitHub {
-    owner = "fujiwarat";
-    repo = "cldr-emoji-annotation";
-    rev = version;
-    sha256 = "0la3h6l58j9jfjvzwz65x56ijx7sppirwpqbqc06if4c2g0kzswj";
-  };
-
-  nativeBuildInputs = [
-    autoreconfHook
-  ];
-
-  meta = with lib; {
-    description = "Emoji annotation files in CLDR";
-    homepage = "https://www.unicode.org/";
-    license = licenses.unicode-dfs-2016;
-    platforms = platforms.all;
-  };
-}