nixpkgs/pkgs/tools/inputmethods/ibus/ibus-qt.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
747 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ibus, cmake, pkg-config, qt4, icu, doxygen }:
2015-03-11 21:44:01 +01:00
stdenv.mkDerivation rec {
pname = "ibus-qt";
2022-07-30 22:48:50 +02:00
version = "1.3.4";
2015-03-11 21:44:01 +01:00
src = fetchurl {
url = "https://github.com/ibus/ibus-qt/releases/download/${version}/${pname}-${version}-Source.tar.gz";
2022-07-30 22:48:50 +02:00
sha256 = "sha256-HnsMy4i8NscCVFF28IcOZ2BoXozZfZzXk4CE9c7bL/E=";
2015-03-11 21:44:01 +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" ];
meta = with lib; {
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 ];
};
}