summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2019-10-27 15:41:03 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-07 00:51:28 +0100
commitc86b5ea0fffc5ba95c6b7b60435d66136a109eaf (patch)
treec58c122c43e0db216418be8d9ce40f076a3acffe /pkgs/tools
parentc1e498514ab24e6eba717c4a76153f727db197bd (diff)
downloadnixpkgs-c86b5ea0fffc5ba95c6b7b60435d66136a109eaf.tar
nixpkgs-c86b5ea0fffc5ba95c6b7b60435d66136a109eaf.tar.gz
nixpkgs-c86b5ea0fffc5ba95c6b7b60435d66136a109eaf.tar.bz2
nixpkgs-c86b5ea0fffc5ba95c6b7b60435d66136a109eaf.tar.lz
nixpkgs-c86b5ea0fffc5ba95c6b7b60435d66136a109eaf.tar.xz
nixpkgs-c86b5ea0fffc5ba95c6b7b60435d66136a109eaf.tar.zst
nixpkgs-c86b5ea0fffc5ba95c6b7b60435d66136a109eaf.zip
ibus-engines.hangul: 1.5.1 → 1.5.3
* https://github.com/libhangul/ibus-hangul/releases/tag/1.5.2
* https://github.com/libhangul/ibus-hangul/releases/tag/1.5.3
* switch to gettext (https://github.com/libhangul/ibus-hangul/commit/8745e3f2630cdad6b1715b4a074e4efc4db14534)
* drop wrapPython, patch shebangs hook will take care of that
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix
index 0a38ccfa3bd..d5e2f50299e 100644
--- a/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix
+++ b/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix
@@ -1,7 +1,8 @@
 { stdenv
 , fetchurl
 , substituteAll
-, intltool
+, appstream-glib
+, gettext
 , pkgconfig
 , wrapGAppsHook
 , gtk3
@@ -12,11 +13,11 @@
 
 stdenv.mkDerivation rec {
   pname = "ibus-hangul";
-  version = "1.5.1";
+  version = "1.5.3";
 
   src = fetchurl {
     url = "https://github.com/choehwanjin/ibus-hangul/releases/download/${version}/${pname}-${version}.tar.gz";
-    sha256 = "0gha8dfdf54rx8fv3yfikbgdg6lqq6l883lhg7q68ybvkjx9bwbs";
+    sha256 = "1400ba2p34vr9q285lqvjm73f6m677cgfdymmjpiwyrjgbbiqrjy";
   };
 
   patches = [
@@ -27,9 +28,9 @@ stdenv.mkDerivation rec {
   ];
 
   nativeBuildInputs = [
-    intltool
+    appstream-glib
+    gettext
     pkgconfig
-    python3.pkgs.wrapPython
     wrapGAppsHook
   ];