From e2a62868d912dcfeae39716c988b671d2d8bd263 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 25 Nov 2015 15:27:25 +0900 Subject: fcitx-anthy: 0.2.1 -> 0.2.2 --- .../fcitx-engines/fcitx-anthy/default.nix | 24 ++++++++++++---------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'pkgs/tools/inputmethods/fcitx-engines') diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix index 2099220f2a1f..c1cb76d3a68b 100644 --- a/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix @@ -1,24 +1,26 @@ -{ stdenv, fetchurl, cmake, fcitx, anthy }: +{ stdenv, fetchurl, cmake, fcitx, anthy, gettext, pkgconfig }: stdenv.mkDerivation rec { - name = "fcitx-anthy-0.2.1"; - - meta = with stdenv.lib; { - description = "Fcitx Wrapper for anthy"; - license = licenses.gpl2Plus; - platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; - }; + name = "fcitx-anthy-${version}"; + version = "0.2.2"; src = fetchurl { url = "http://download.fcitx-im.org/fcitx-anthy/${name}.tar.xz"; - sha256 = "13fpfhhxkzbq53h10i3hifa37nngm47jq361i70z22bgcrs8887x"; + sha256 = "0ayrzfx95670k86y19bzl6i6w98haaln3x8dxpb39a5dwgz59pf8"; }; - buildInputs = [ cmake fcitx anthy ]; + buildInputs = [ cmake fcitx anthy gettext pkgconfig ]; preInstall = '' substituteInPlace src/cmake_install.cmake \ --replace ${fcitx} $out ''; + + meta = with stdenv.lib; { + description = "Fcitx Wrapper for anthy"; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ iyzsong ericsagnes ]; + }; + } -- cgit 1.4.1