dput-ng: fix eval (#364540)
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx5 / fcitx5-table-other.nix
blob5dc95a6186d5ac8cd7c81b956884e6aa7fa5ec5d
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   cmake,
6   extra-cmake-modules,
7   gettext,
8   libime,
9   boost,
10   fcitx5,
13 stdenv.mkDerivation rec {
14   pname = "fcitx5-table-other";
15   version = "5.1.3";
17   src = fetchFromGitHub {
18     owner = "fcitx";
19     repo = pname;
20     rev = version;
21     hash = "sha256-hIUzVc3Bs1zGvM/+R72NigU997Wmm++ZDxnzP+YpX1w=";
22   };
24   nativeBuildInputs = [
25     cmake
26     extra-cmake-modules
27     gettext
28     libime
29     boost
30     fcitx5
31   ];
33   meta = with lib; {
34     description = "Some other tables for Fcitx";
35     homepage = "https://github.com/fcitx/fcitx5-table-other";
36     license = licenses.gpl3Only;
37     maintainers = with maintainers; [ poscat ];
38     platforms = platforms.linux;
39   };