python312Packages.mandown: 1.10.0 -> 1.10.1 (#370595)
[NixPkgs.git] / pkgs / tools / inputmethods / fcitx5 / fcitx5-hangul.nix
blob86271423a8416768374330b5f844e86a4bb8b54a
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   cmake,
6   extra-cmake-modules,
7   gettext,
8   fcitx5,
9   libhangul,
10   nixosTests,
13 stdenv.mkDerivation rec {
14   pname = "fcitx5-hangul";
15   version = "5.1.5";
17   src = fetchFromGitHub {
18     owner = "fcitx";
19     repo = pname;
20     rev = version;
21     hash = "sha256-+IXsMT87Dc+Ad4r6/U+NLYo+04j+I58Cqz99v4Yr0uc=";
22   };
24   nativeBuildInputs = [
25     cmake
26     extra-cmake-modules
27     gettext
28   ];
30   buildInputs = [
31     fcitx5
32     libhangul
33   ];
35   passthru.tests = {
36     inherit (nixosTests) fcitx5;
37   };
39   meta = with lib; {
40     description = "Hangul wrapper for Fcitx5";
41     homepage = "https://github.com/fcitx/fcitx5-hangul";
42     license = licenses.lgpl21Plus;
43     maintainers = with maintainers; [ xrelkd ];
44     platforms = platforms.linux;
45   };