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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
701 B
Nix
Raw Normal View History

2021-01-15 12:19:50 +03:00
{ lib, stdenv
2020-12-14 03:01:19 +03:00
, fetchFromGitHub
, cmake
, extra-cmake-modules
, gettext
, libime
, boost
, fcitx5
}:
stdenv.mkDerivation rec {
pname = "fcitx5-table-other";
version = "5.1.0";
2020-12-14 03:01:19 +03:00
src = fetchFromGitHub {
owner = "fcitx";
2021-06-02 15:44:27 +03:00
repo = pname;
2020-12-14 03:01:19 +03:00
rev = version;
sha256 = "sha256-ymHAKaPmQckxM/XHoDOVSzEWpyQGb7zVG21CDwNfyjg=";
2020-12-14 03:01:19 +03:00
};
nativeBuildInputs = [
cmake
extra-cmake-modules
gettext
libime
boost
fcitx5
];
2021-01-15 12:19:50 +03:00
meta = with lib; {
2020-12-14 03:01:19 +03: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;
};
}