1 { lib, stdenv, fetchurl, cmake, fcitx, anthy, gettext, pkg-config }:
3 stdenv.mkDerivation rec {
8 url = "http://download.fcitx-im.org/fcitx-anthy/${pname}-${version}.tar.xz";
9 sha256 = "01jx7wwq0mifqrzkswfglqhwkszbfcl4jinxgdgqx9kc6mb4k6zd";
12 nativeBuildInputs = [ cmake pkg-config ];
13 buildInputs = [ fcitx anthy gettext ];
16 substituteInPlace src/cmake_install.cmake \
17 --replace ${fcitx} $out
22 description = "Fcitx Wrapper for anthy";
23 license = licenses.gpl2Plus;
24 platforms = platforms.linux;
25 maintainers = with maintainers; [ ericsagnes ];