summary refs log tree commit diff
diff options
context:
space:
mode:
authorlinsui <linsui555@gmail.com>2023-08-18 16:58:38 +0800
committerlinsui <linsui555@gmail.com>2023-08-18 17:30:23 +0800
commitb5e9eb26c26c3314d53dd2b6d2c35508b0c81638 (patch)
tree44d2cd3e9f78db301104b5302d8377428a01ceec
parentf0deb16f8e8bb4b61b7d204713ec3d3f18b284a8 (diff)
downloadnixpkgs-b5e9eb26c26c3314d53dd2b6d2c35508b0c81638.tar
nixpkgs-b5e9eb26c26c3314d53dd2b6d2c35508b0c81638.tar.gz
nixpkgs-b5e9eb26c26c3314d53dd2b6d2c35508b0c81638.tar.bz2
nixpkgs-b5e9eb26c26c3314d53dd2b6d2c35508b0c81638.tar.lz
nixpkgs-b5e9eb26c26c3314d53dd2b6d2c35508b0c81638.tar.xz
nixpkgs-b5e9eb26c26c3314d53dd2b6d2c35508b0c81638.tar.zst
nixpkgs-b5e9eb26c26c3314d53dd2b6d2c35508b0c81638.zip
fcitx5: 5.0.23 -> 5.1.0
Diff: https://github.com/fcitx/fcitx5/compare/5.0.23...5.1.0
-rw-r--r--pkgs/tools/inputmethods/fcitx5/default.nix12
1 files changed, 2 insertions, 10 deletions
diff --git a/pkgs/tools/inputmethods/fcitx5/default.nix b/pkgs/tools/inputmethods/fcitx5/default.nix
index 01167b4d007..9ce0eda43cc 100644
--- a/pkgs/tools/inputmethods/fcitx5/default.nix
+++ b/pkgs/tools/inputmethods/fcitx5/default.nix
@@ -43,23 +43,15 @@ let
 in
 stdenv.mkDerivation rec {
   pname = "fcitx5";
-  version = "5.0.23";
+  version = "5.1.0";
 
   src = fetchFromGitHub {
     owner = "fcitx";
     repo = pname;
     rev = version;
-    hash = "sha256-zS25XeNtBN7QIi+Re/p1uLoH/Q4xKAsFrEmgk2LYRu8=";
+    hash = "sha256-tnYyHhldPmMZcygpcOcbaYFQbRQjPr/FlvyYfRylTmQ=";
   };
 
-  patches = [
-    # Fix compatiblity with fmt 10.0. Remove with the next release
-    (fetchpatch {
-      url = "https://github.com/fcitx/fcitx5/commit/7fb3a5500270877d93b61b11b2a17b9b8f6a506b.patch";
-      hash = "sha256-Z4Sqdyp/doJPTB+hEUrG9vncUP29L/b0yJ/u5ldpnds=";
-    })
-  ];
-
   prePatch = ''
     ln -s ${enDict} src/modules/spell/$(stripHash ${enDict})
   '';