evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / fc / fcitx5-mcbopomofo / package.nix
blobdbd9866f58c847cc636b7a9fb525cb9a1d72a96a
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   cmake,
6   extra-cmake-modules,
7   gettext,
8   json_c,
9   icu,
10   fmt,
11   gtest,
12   fcitx5,
13   nix-update-script,
16 stdenv.mkDerivation rec {
17   pname = "fcitx5-mcbopomofo";
18   version = "2.8";
20   src = fetchFromGitHub {
21     owner = "openvanilla";
22     repo = "fcitx5-mcbopomofo";
23     rev = version;
24     hash = "sha256-VnAE+DIDEYAfHnHS/ufwohkUgmgjNyrCyJlA2g1p2aY=";
25   };
27   nativeBuildInputs = [
28     cmake
29     extra-cmake-modules
30     gettext
31     json_c
32     icu
33     fmt
34     gtest
35   ];
37   buildInputs = [
38     fcitx5
39   ];
41   cmakeFlags = [
42     "-DCMAKE_BUILD_TYPE=Release"
43   ];
45   passthru.updateScript = nix-update-script { };
47   meta = {
48     description = "McBopomofo for fcitx5";
49     homepage = "https://github.com/openvanilla/fcitx5-mcbopomofo";
50     license = lib.licenses.mit;
51     maintainers = with lib.maintainers; [ shiphan ];
52     platforms = lib.platforms.linux;
53   };