3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, cmake, fcitx, pkgconfig, qtbase, kde5 }:
2015-11-25 06:01:45 +00:00
stdenv.mkDerivation rec {
name = "fcitx-qt5-${version}";
2016-02-16 17:15:15 +00:00
version = "1.0.5";
2015-11-25 06:01:45 +00:00
src = fetchurl {
url = "http://download.fcitx-im.org/fcitx-qt5/${name}.tar.xz";
2016-02-16 17:15:15 +00:00
sha256 = "1pj1b04n8r4kl7jh1qdv0xshgzb3zrmizfa3g5h3yk589h191vwc";
2015-11-25 06:01:45 +00:00
};
# The following is to not have a dependency on kde5 so the plugin can be part of qt5LibsFun
postUnpack = ''
${lib.concatMapStrings (f: ''
ln -s ${kde5.extra-cmake-modules}/share/ECM/modules/${f} $sourceRoot/cmake/
'')
[ "ECMFindModuleHelpers.cmake" "ECMGenerateHeaders.cmake"
"ECMPackageConfigHelpers.cmake" "ECMQueryQmake.cmake"
"ECMSetupVersion.cmake" "ECMVersionHeader.h.in" ]}
'';
buildInputs = [ cmake fcitx pkgconfig qtbase ];
2015-11-25 06:01:45 +00:00
preInstall = ''
substituteInPlace platforminputcontext/cmake_install.cmake \
2016-04-20 04:59:13 +01:00
--replace ${qtbase.out} $out
2015-11-25 06:01:45 +00:00
'';
meta = with stdenv.lib; {
homepage = "https://github.com/fcitx/fcitx-qt5";
description = "Qt5 IM Module for Fcitx";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ ericsagnes ];
};
}