Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

fcitx-unikey: init at 0.2.5

+33
+31
pkgs/tools/inputmethods/fcitx-engines/fcitx-unikey/default.nix
··· 1 + { stdenv, fetchurl, cmake, fcitx, gettext, pkgconfig }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "fcitx-unikey-${version}"; 5 + version = "0.2.5"; 6 + 7 + src = fetchurl { 8 + url = "http://download.fcitx-im.org/fcitx-unikey/${name}.tar.xz"; 9 + sha256 = "063vc29v7ycaai98v3z4q319sv9sm91my17pmhblw1vifxnw02wf"; 10 + }; 11 + 12 + buildInputs = [ cmake fcitx gettext pkgconfig ]; 13 + 14 + preInstall = '' 15 + substituteInPlace src/cmake_install.cmake \ 16 + --replace ${fcitx} $out 17 + substituteInPlace data/cmake_install.cmake \ 18 + --replace ${fcitx} $out 19 + ''; 20 + 21 + meta = with stdenv.lib; { 22 + isFcitxEngine = true; 23 + homepage = "https://github.com/fcitx/fcitx-unikey"; 24 + downloadPage = "http://download.fcitx-im.org/fcitx-table-other/"; 25 + description = "Fcitx wrapper for unikey"; 26 + license = licenses.gpl3Plus; 27 + platforms = platforms.linux; 28 + maintainers = with maintainers; [ ericsagnes ]; 29 + }; 30 + 31 + }
+2
pkgs/top-level/all-packages.nix
··· 1528 1528 1529 1529 hangul = callPackage ../tools/inputmethods/fcitx-engines/fcitx-hangul { }; 1530 1530 1531 + unikey = callPackage ../tools/inputmethods/fcitx-engines/fcitx-unikey { }; 1532 + 1531 1533 m17n = callPackage ../tools/inputmethods/fcitx-engines/fcitx-m17n { }; 1532 1534 1533 1535 mozc = callPackage ../tools/inputmethods/fcitx-engines/fcitx-mozc {