about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPoscat <poscat@mail.poscat.moe>2020-12-14 08:01:19 +0800
committerPoscat <poscat@mail.poscat.moe>2021-01-10 14:31:10 +0800
commit4ef64822612839af18c863192e5f4ddc638fd96b (patch)
treea0b2faac67d70166316fcda12671eabfa2e42db9
parent7b99329edda843f669f46f6524272b89147991b2 (diff)
downloadnixlib-4ef64822612839af18c863192e5f4ddc638fd96b.tar
nixlib-4ef64822612839af18c863192e5f4ddc638fd96b.tar.gz
nixlib-4ef64822612839af18c863192e5f4ddc638fd96b.tar.bz2
nixlib-4ef64822612839af18c863192e5f4ddc638fd96b.tar.lz
nixlib-4ef64822612839af18c863192e5f4ddc638fd96b.tar.xz
nixlib-4ef64822612839af18c863192e5f4ddc638fd96b.tar.zst
nixlib-4ef64822612839af18c863192e5f4ddc638fd96b.zip
fcitx5-table-other: Init at 5.0.1
-rw-r--r--pkgs/tools/inputmethods/fcitx5/fcitx5-table-other.nix38
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-table-other.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-table-other.nix
new file mode 100644
index 000000000000..eb9d93d6e7ce
--- /dev/null
+++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-table-other.nix
@@ -0,0 +1,38 @@
+{ stdenv
+, fetchFromGitHub
+, cmake
+, extra-cmake-modules
+, gettext
+, libime
+, boost
+, fcitx5
+}:
+
+stdenv.mkDerivation rec {
+  pname = "fcitx5-table-other";
+  version = "5.0.1";
+
+  src = fetchFromGitHub {
+    owner = "fcitx";
+    repo = "fcitx5-table-other";
+    rev = version;
+    sha256 = "hQlrjDPImDof2+3/uOtTdJ27cInevbxH9B+lNwquKbs=";
+  };
+
+  nativeBuildInputs = [
+    cmake
+    extra-cmake-modules
+    gettext
+    libime
+    boost
+    fcitx5
+  ];
+
+  meta = with stdenv.lib; {
+    description = "Some other tables for Fcitx";
+    homepage = "https://github.com/fcitx/fcitx5-table-other";
+    license = licenses.gpl3Only;
+    maintainers = with maintainers; [ poscat ];
+    platforms = platforms.linux;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index b875484299db..6cd28813e83f 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -3948,6 +3948,8 @@ in
 
   fcitx5-table-extra = callPackage ../tools/inputmethods/fcitx5/fcitx5-table-extra.nix { };
 
+  fcitx5-table-other = callPackage ../tools/inputmethods/fcitx5/fcitx5-table-other.nix { };
+
   fcppt = callPackage ../development/libraries/fcppt { };
 
   fcrackzip = callPackage ../tools/security/fcrackzip { };