distro: Split (distro packages base) into several files.
[jackhill/guix/guix.git] / distro / packages / libunistring.scm
CommitLineData
c44899a2
LC
1;;; Guix --- Nix package management from Guile. -*- coding: utf-8 -*-
2;;; Copyright (C) 2012 Ludovic Courtès <ludo@gnu.org>
3;;;
4;;; This file is part of Guix.
5;;;
6;;; Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (distro packages libunistring)
20 #:use-module (guix packages)
21 #:use-module (guix http)
22 #:use-module (guix utils)
23 #:use-module (guix build-system gnu))
24
25(define-public libunistring
26 (package
27 (name "libunistring")
28 (version "0.9.3")
29 (source (origin
30 (method http-fetch)
31 (uri (string-append
32 "http://ftp.gnu.org/gnu/libunistring/libunistring-"
33 version ".tar.gz"))
34 (sha256
35 (base32
36 "18q620269xzpw39dwvr9zpilnl2dkw5z5kz3mxaadnpv4k3kw3b1"))))
37 (propagated-inputs '()) ; FIXME: add libiconv when !glibc
38 (build-system gnu-build-system)
39 (synopsis "GNU Libunistring, a Unicode string library")
40 (description
41 "This library provides functions for manipulating Unicode strings and for
42manipulating C strings according to the Unicode standard.
43
44GNU libunistring is for you if your application involves non-trivial text
45processing, such as upper/lower case conversions, line breaking, operations
46on words, or more advanced analysis of text. Text provided by the user can,
47in general, contain characters of all kinds of scripts. The text processing
48functions provided by this library handle all scripts and all languages.
49
50libunistring is for you if your application already uses the ISO C / POSIX
51<ctype.h>, <wctype.h> functions and the text it operates on is provided by
52the user and can be in any language.
53
54libunistring is also for you if your application uses Unicode strings as
55internal in-memory representation.")
56 (home-page "http://www.gnu.org/software/libunistring/")
57 (license "LGPLv3+")))