* bug#27278: Boost with ICU support
@ 2017-06-07 20:31 Leo Famulari
2017-06-08 6:07 ` Marius Bakke
0 siblings, 1 reply; 3+ messages in thread
From: Leo Famulari @ 2017-06-07 20:31 UTC (permalink / raw)
To: 27278
[-- Attachment #1.1: Type: text/plain, Size: 171 bytes --]
This patch adds ICU support to Boost.
Concretely, it allows for diacritic-insensitive searching through a
music library in ncmpcpp, which is a big usability improvement.
[-- Attachment #1.2: 0001-gnu-boost-Add-ICU-support.patch --]
[-- Type: text/plain, Size: 1260 bytes --]
From 578c023a7348b756fee2d58eecd568942c360f0f Mon Sep 17 00:00:00 2001
From: Leo Famulari <leo@famulari.name>
Date: Sun, 4 Jun 2017 15:40:20 -0400
Subject: [PATCH] gnu: boost: Add ICU support.
* gnu/packages/boost.scm (boost)[inputs]: Add icu4c.
---
gnu/packages/boost.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index dfaa85353..227954c73 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -28,9 +28,10 @@
#:use-module (guix build-system gnu)
#:use-module (gnu packages)
#:use-module (gnu packages compression)
+ #:use-module (gnu packages icu4c)
+ #:use-module (gnu packages perl)
#:use-module (gnu packages python)
- #:use-module (gnu packages shells)
- #:use-module (gnu packages perl))
+ #:use-module (gnu packages shells))
(define-public boost
(package
@@ -46,7 +47,8 @@
(base32
"1c5kzhcqahnic55dxcnw7r80qvwx5sfa2sa97yzv7xjrywljbbmy"))))
(build-system gnu-build-system)
- (inputs `(("zlib" ,zlib)))
+ (inputs `(("icu4c" ,icu4c)
+ ("zlib" ,zlib)))
(native-inputs
`(("perl" ,perl)
("python" ,python-2)
--
2.13.1
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-06-12 2:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-07 20:31 bug#27278: Boost with ICU support Leo Famulari
2017-06-08 6:07 ` Marius Bakke
2017-06-12 2:09 ` Leo Famulari
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.