nixpkgs/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix

43 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, fcitx, pkgconfig, qtbase, extra-cmake-modules
2018-06-20 07:43:43 +00:00
, fetchpatch
}:
2015-11-25 06:01:45 +00:00
stdenv.mkDerivation rec {
name = "fcitx-qt5-${version}";
2017-12-29 22:19:13 +00:00
version = "1.2.1";
2015-11-25 06:01:45 +00:00
src = fetchurl {
url = "http://download.fcitx-im.org/fcitx-qt5/${name}.tar.xz";
2017-12-29 22:19:13 +00:00
sha256 = "0z8ax0dxk88byic41mfaiahjdv1k8ciwn97xfjkkgr4ijgscdr8c";
2015-11-25 06:01:45 +00:00
};
2018-06-20 07:43:43 +00:00
patches = [
# Fix build with Qt 5.11
# https://github.com/fcitx/fcitx-qt5/issues/34
(fetchpatch {
url = https://github.com/fcitx/fcitx-qt5/commit/af033e3d5305108eecc568adff7f8b2da5831ed6.diff;
sha256 = "14vfz1fw2k362wnqpglw766fg3d3mc8cmfgic2p96yyipjh9xx3b";
})
];
nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig ];
buildInputs = [ fcitx qtbase ];
2015-11-25 06:01:45 +00:00
preInstall = ''
substituteInPlace platforminputcontext/cmake_install.cmake \
2016-04-20 03:59:13 +00:00
--replace ${qtbase.out} $out
2017-12-29 22:19:13 +00:00
substituteInPlace quickphrase-editor/cmake_install.cmake \
--replace ${fcitx} $out
2015-11-25 06:01:45 +00:00
'';
meta = with stdenv.lib; {
homepage = https://github.com/fcitx/fcitx-qt5;
2015-11-25 06:01:45 +00:00
description = "Qt5 IM Module for Fcitx";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ ericsagnes ];
};
}