fcitx-qt5: init at 1.0.4

This commit is contained in:
Eric Sagnes 2015-11-25 15:01:45 +09:00 committed by 宋文武
parent db28fa4039
commit 6ca51e3062
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv, fetchurl, cmake, fcitx, extra-cmake-modules, qtbase }:
stdenv.mkDerivation rec {
name = "fcitx-qt5-${version}";
version = "1.0.4";
src = fetchurl {
url = "http://download.fcitx-im.org/fcitx-qt5/${name}.tar.xz";
sha256 = "070dlmwkim7sg0xwxfcbb46li1jk8yd3rmj0j5fkmgyr12044aml";
};
buildInputs = [ cmake fcitx extra-cmake-modules qtbase ];
preInstall = ''
substituteInPlace platforminputcontext/cmake_install.cmake \
--replace ${qtbase} $out
'';
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 ];
};
}

View File

@ -6791,6 +6791,8 @@ let
kf5PackagesFun = self: with self; {
fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { };
k9copy = callPackage ../applications/video/k9copy {};
quassel = callPackage ../applications/networking/irc/quassel/qt-5.nix {