summary refs log tree commit diff
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2021-04-05 19:18:33 +0200
committerGabriel Ebner <gebner@gebner.org>2021-04-09 09:26:12 +0200
commit46a702eba16d9ad244657081a11965ce0d84e440 (patch)
treef374fb74a709dfbb2fdc74cc526bc259f0ffcc6e /pkgs/tools/inputmethods
parent1cf80c56e3d3d45ba90208b49f34000bff3eb3e7 (diff)
downloadnixpkgs-46a702eba16d9ad244657081a11965ce0d84e440.tar
nixpkgs-46a702eba16d9ad244657081a11965ce0d84e440.tar.gz
nixpkgs-46a702eba16d9ad244657081a11965ce0d84e440.tar.bz2
nixpkgs-46a702eba16d9ad244657081a11965ce0d84e440.tar.lz
nixpkgs-46a702eba16d9ad244657081a11965ce0d84e440.tar.xz
nixpkgs-46a702eba16d9ad244657081a11965ce0d84e440.tar.zst
nixpkgs-46a702eba16d9ad244657081a11965ce0d84e440.zip
fcitx5-mozc: remove unused mesa dependency
Diffstat (limited to 'pkgs/tools/inputmethods')
-rw-r--r--pkgs/tools/inputmethods/fcitx5/fcitx5-mozc.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-mozc.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-mozc.nix
index d077b0a25c5..57bb0220b31 100644
--- a/pkgs/tools/inputmethods/fcitx5/fcitx5-mozc.nix
+++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-mozc.nix
@@ -1,5 +1,5 @@
 { lib, clangStdenv, fetchFromGitHub, fetchurl, fetchpatch, fetchgit
-, python3Packages, mesa, ninja, pkg-config, protobuf, zinnia, qt5, fcitx5
+, python3Packages, ninja, pkg-config, protobuf, zinnia, qt5, fcitx5
 , jsoncpp, gtest, which, gtk2, unzip, abseil-cpp, breakpad }:
 let
   inherit (python3Packages) python gyp six;
@@ -31,7 +31,7 @@ in clangStdenv.mkDerivation rec {
     sha256 = "R+w0slVFpqtt7PIr1pyupJjRoQsABVZiMdZ9fKGKAqw=";
   };
 
-  nativeBuildInputs = [ gyp ninja mesa python pkg-config qt5.wrapQtAppsHook six which unzip ];
+  nativeBuildInputs = [ gyp ninja python pkg-config qt5.wrapQtAppsHook six which unzip ];
 
   buildInputs = [ protobuf zinnia qt5.qtbase fcitx5 abseil-cpp jsoncpp gtest gtk2 ];