nixpkgs/pkgs/tools/inputmethods/fcitx5/fcitx5-table-other.nix

39 lines
716 B
Nix
Raw Normal View History

2021-01-15 10:19:50 +01:00
{ lib, stdenv
2020-12-14 01:01:19 +01:00
, fetchFromGitHub
, cmake
, extra-cmake-modules
, gettext
, libime
, boost
, fcitx5
}:
stdenv.mkDerivation rec {
pname = "fcitx5-table-other";
2021-02-21 17:09:58 +01:00
version = "5.0.3";
2020-12-14 01:01:19 +01:00
src = fetchFromGitHub {
owner = "fcitx";
repo = "fcitx5-table-other";
rev = version;
2021-02-21 17:09:58 +01:00
sha256 = "sha256-jJTFAOrBeRBoUn0mqqkX0z1zQnDOh7otMHDPmjuZbWw=";
2020-12-14 01:01:19 +01:00
};
nativeBuildInputs = [
cmake
extra-cmake-modules
gettext
libime
boost
fcitx5
];
2021-01-15 10:19:50 +01:00
meta = with lib; {
2020-12-14 01:01:19 +01:00
description = "Some other tables for Fcitx";
homepage = "https://github.com/fcitx/fcitx5-table-other";
license = licenses.gpl3Only;
maintainers = with maintainers; [ poscat ];
platforms = platforms.linux;
};
}