3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix
R. RyanTM 5f608eb296 fcitx-engines.anthy: 0.2.2 -> 0.2.3 (#43208)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/fcitx-anthy/versions.

These checks were done:

- built on NixOS
- fcitx result is not automatically checked, because some binaries gets stuck in daemons
2018-07-13 23:51:52 +02:00

29 lines
737 B
Nix

{ stdenv, fetchurl, cmake, fcitx, anthy, gettext, pkgconfig }:
stdenv.mkDerivation rec {
name = "fcitx-anthy-${version}";
version = "0.2.3";
src = fetchurl {
url = "http://download.fcitx-im.org/fcitx-anthy/${name}.tar.xz";
sha256 = "01jx7wwq0mifqrzkswfglqhwkszbfcl4jinxgdgqx9kc6mb4k6zd";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake fcitx anthy gettext ];
preInstall = ''
substituteInPlace src/cmake_install.cmake \
--replace ${fcitx} $out
'';
meta = with stdenv.lib; {
isFcitxEngine = true;
description = "Fcitx Wrapper for anthy";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ ericsagnes ];
};
}