fcitx-qt5: init at 1.0.4
This commit is contained in:
parent
db28fa4039
commit
6ca51e3062
27
pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix
Normal file
27
pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -6791,6 +6791,8 @@ let
|
|||||||
|
|
||||||
kf5PackagesFun = self: with self; {
|
kf5PackagesFun = self: with self; {
|
||||||
|
|
||||||
|
fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { };
|
||||||
|
|
||||||
k9copy = callPackage ../applications/video/k9copy {};
|
k9copy = callPackage ../applications/video/k9copy {};
|
||||||
|
|
||||||
quassel = callPackage ../applications/networking/irc/quassel/qt-5.nix {
|
quassel = callPackage ../applications/networking/irc/quassel/qt-5.nix {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user