nixpkgs/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix

29 lines
739 B
Nix
Raw Normal View History

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