guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re:Re: [PATCH] Add fcitx-configtool


From: tumashu
Subject: Re:Re: [PATCH] Add fcitx-configtool
Date: Thu, 19 Jan 2017 07:00:09 +0800 (CST)

yes, it workswell for me
At 2017-01-19 03:55:23, "Marius Bakke" <address@hidden> wrote:
>
>Hi tumashu!
>
>The patch looks good. Does it work for you? It does not find any
>input methods on my system, but perhaps I need to install some?
>
>If you can confirm that this works for your use, I think it can be added
>as it is, save for some minor changes to make `guix lint` happy. I will
>add the same copyright header as the other patch if that is okay.
>
>Thank you!
>
>> From 6312de615f63343b9129cbe104f1a57837f8fb8b Mon Sep 17 00:00:00 2001
>> From: Feng Shu <address@hidden>
>> Date: Tue, 17 Jan 2017 13:02:30 +0800
>> Subject: [PATCH] Add fcitx-configtool
>>
>> ---
>>  gnu/packages/fcitx.scm | 36 ++++++++++++++++++++++++++++++++++++
>>  1 file changed, 36 insertions(+)
>>
>> diff --git a/gnu/packages/fcitx.scm b/gnu/packages/fcitx.scm
>> index dd8eead7f..b5275cebf 100644
>> --- a/gnu/packages/fcitx.scm
>> +++ b/gnu/packages/fcitx.scm
>> @@ -85,3 +85,39 @@
>>  Pinyin, Quwei and some table-based (Wubi, Cangjie, Erbi, etc.) input methods
>>  built-in.")
>>      (license gpl2+)))
>> +
>> +(define-public fcitx-configtool
>> +  (package
>> +   (name "fcitx-configtool")
>> +   (version "0.4.8")
>> +   (source (origin
>> +            (method url-fetch)
>> +            (uri (string-append 
>> "https://download.fcitx-im.org/fcitx-configtool/";
>> +                  name "-" version ".tar.xz"))
>> +            (sha256
>> +             (base32
>> +              "1vaim0namw58bfafbvws1vgd4010p19zwqfbx6bd1zi5sgchdg0f"))))
>> +   (build-system cmake-build-system)
>> +   (arguments
>> +    `(#:configure-flags
>> +      (list "-DENABLE_GTK2=ON"
>> +            "-DENABLE_GTK3=ON")
>> +      #:tests? #f))
>> +   (native-inputs
>> +    `(("glib:bin"   ,glib "bin")
>> +      ("pkg-config" ,pkg-config)))
>> +   (inputs
>> +    `(("fcitx"      ,fcitx)
>> +      ("dbus-glib"  ,dbus-glib)
>> +      ("gettext"    ,gettext-minimal)
>> +      ("gtk2"       ,gtk+-2)
>> +      ("gtk3"       ,gtk+)
>> +      ("iso-codes"  ,iso-codes)))
>> +   (home-page "http://fcitx-im.org";)
>> +   (synopsis "Graphic Fcitx configuration tool")
>> +   (description
>> +    "Fcitx is an input method framework with extension support.  It has
>> +Pinyin, Quwei and some table-based (Wubi, Cangjie, Erbi, etc.) input methods
>> +built-in. This package provides GTK version of the graphic configuration 
>> tool
>> +of Fcitx.")
>> +   (license gpl2+)))
>> -- 
>> 2.11.0

reply via email to

[Prev in Thread] Current Thread [Next in Thread]