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

39 lines
702 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-06-02 14:44:27 +02:00
version = "5.0.5";
2020-12-14 01:01:19 +01:00
src = fetchFromGitHub {
owner = "fcitx";
2021-06-02 14:44:27 +02:00
repo = pname;
2020-12-14 01:01:19 +01:00
rev = version;
2021-06-02 14:44:27 +02:00
sha256 = "0z34y05sbb2qavpa6banv7xvlsmpymmm828265r8bf7r995wx8lz";
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;
};
}