2015-11-25 07:27:25 +01:00
|
|
|
{ stdenv, fetchurl, cmake, fcitx, anthy, gettext, pkgconfig }:
|
2014-08-27 11:05:14 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-11-25 07:27:25 +01:00
|
|
|
name = "fcitx-anthy-${version}";
|
2018-07-13 23:51:52 +02:00
|
|
|
version = "0.2.3";
|
2014-08-27 11:05:14 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.fcitx-im.org/fcitx-anthy/${name}.tar.xz";
|
2018-07-13 23:51:52 +02:00
|
|
|
sha256 = "01jx7wwq0mifqrzkswfglqhwkszbfcl4jinxgdgqx9kc6mb4k6zd";
|
2014-08-27 11:05:14 +02:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ cmake fcitx anthy gettext ];
|
2014-08-27 11:05:14 +02:00
|
|
|
|
|
|
|
preInstall = ''
|
|
|
|
substituteInPlace src/cmake_install.cmake \
|
|
|
|
--replace ${fcitx} $out
|
|
|
|
'';
|
2015-11-25 07:27:25 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-11-25 08:29:50 +01:00
|
|
|
isFcitxEngine = true;
|
|
|
|
description = "Fcitx Wrapper for anthy";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2016-03-13 09:08:15 +01:00
|
|
|
maintainers = with maintainers; [ ericsagnes ];
|
2015-11-25 07:27:25 +01:00
|
|
|
};
|
|
|
|
|
2014-08-27 11:05:14 +02:00
|
|
|
}
|