2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, ibus, cmake, pkg-config, qt4, icu, doxygen }:
|
2015-03-11 21:44:01 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "ibus-qt";
|
2015-05-28 22:03:35 +02:00
|
|
|
version = "1.3.3";
|
2015-03-11 21:44:01 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://github.com/ibus/ibus-qt/releases/download/${version}/${pname}-${version}-Source.tar.gz";
|
2015-05-28 22:03:35 +02:00
|
|
|
sha256 = "1q9g7qghpcf07valc2ni7yf994xqx2pmdffknj7scxfidav6p19g";
|
2015-03-11 21:44:01 +01:00
|
|
|
};
|
|
|
|
|
2020-12-31 08:48:55 +01:00
|
|
|
nativeBuildInputs = [ cmake pkg-config doxygen ];
|
|
|
|
buildInputs = [ ibus qt4 icu ];
|
2015-03-11 21:44:01 +01:00
|
|
|
|
|
|
|
cmakeFlags = [ "-DQT_PLUGINS_DIR=lib/qt4/plugins" ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/ibus/ibus-qt/";
|
2015-03-11 21:44:01 +01:00
|
|
|
description = "Qt4 interface to the ibus input method";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ gebner ];
|
|
|
|
};
|
|
|
|
}
|