/* GNU Guix --- Functional package management for GNU Copyright (C) 2012 Ludovic Courtès This file is part of GNU Guix. GNU Guix is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. GNU Guix is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Guix. If not, see . */ #include #define MD5_CTX guix_hash_context static inline void MD5_Init (struct MD5_CTX *ctx) { guix_hash_init (ctx, GCRY_MD_MD5); } #define MD5_Update guix_hash_update static inline void MD5_Final (void *resbuf, struct MD5_CTX *ctx) { guix_hash_final (resbuf, ctx, GCRY_MD_MD5); } summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/fcitx5.scm16
1 files changed, 4 insertions, 12 deletions
diff --git a/gnu/packages/fcitx5.scm b/gnu/packages/fcitx5.scm
index d03c931458..3bf175c212 100644
--- a/gnu/packages/fcitx5.scm
+++ b/gnu/packages/fcitx5.scm
@@ -87,7 +87,7 @@ client.")
(define-public fcitx5
(package
(name "fcitx5")
- (version "5.0.23")
+ (version "5.1.0")
(source
(origin
(method url-fetch)
@@ -95,13 +95,10 @@ client.")
"https://download.fcitx-im.org/fcitx5/fcitx5/fcitx5-"
version "_dict.tar.xz"))
(sha256
- (base32 "1w26v0a8qizv8flpkmg04b42kwym6ca1a1chng7j2j1xizjhiw0p"))))
- (build-system cmake-build-system)
+ (base32 "1a1d3bcxddv3hsmffgf608arhamia17bq82q932sy5zl9j8s423y"))))
(arguments
- `(#:configure-flags
- (list (string-append "-DCLDR_DIR="
- (assoc-ref %build-inputs "unicode-cldr-common")
- "/share/unicode/cldr"))))
+ (list #:configure-flags #~(list "-DUSE_SYSTEMD=OFF")))
+ (build-system cmake-build-system)
(inputs
`(("cairo" ,cairo)
("cairo-xcb" ,cairo-xcb)
@@ -115,16 +112,11 @@ client.")
("iso-codes" ,iso-codes)
("json-c" ,json-c)
("libevent" ,libevent)
- ("libpthread-stubs" ,libpthread-stubs)
("libuuid" ,util-linux "lib")
- ("libx11" ,libx11)
("libxcb" ,libxcb)
- ("libxfixes" ,libxfixes)
- ("libxinerama" ,libxinerama)
("libxkbcommon" ,libxkbcommon)
("libxkbfile" ,libxkbfile)
("pango" ,pango)
- ("unicode-cldr-common" ,unicode-cldr-common)
("wayland" ,wayland)
("wayland-protocols" ,wayland-protocols)
("xcb-imdkit" ,xcb-imdkit)