python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx-engines / fcitx-hangul / default.nix
blobd99a0228e226203e68938868e9ff71d994b0218a
1 { lib, stdenv, fetchurl, cmake, fcitx, libhangul, gettext, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "fcitx-hangul";
5   version = "0.3.1";
7   src = fetchurl {
8     url = "http://download.fcitx-im.org/fcitx-hangul/${pname}-${version}.tar.xz";
9     sha256 = "0ds4071ljq620w7vnprm2jl8zqqkw7qsxvzbjapqak4jarczvmbd";
10   };
12   nativeBuildInputs = [ cmake pkg-config ];
13   buildInputs = [ fcitx libhangul gettext ];
15   preInstall = ''
16     substituteInPlace src/cmake_install.cmake \
17       --replace ${fcitx} $out
18     substituteInPlace data/cmake_install.cmake \
19       --replace ${fcitx} $out
20   '';
22   meta = with lib; {
23     isFcitxEngine = true;
24     homepage      = "https://github.com/fcitx/fcitx-hangul";
25     downloadPage  = "http://download.fcitx-im.org/fcitx-hangul/";
26     description   = "Fcitx Wrapper for hangul";
27     license       = licenses.gpl2;
28     platforms     = platforms.linux;
29     maintainers   = with maintainers; [ ericsagnes ];
30   };