aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/libunistring.scm
blob: aa053711a9298d5f7183491f668094c64f42350c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
;;;
;;; 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 <http://www.gnu.org/licenses/>.

(define-module (gnu packages libunistring)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))

(define-public libunistring
  (package
   (name "libunistring")
   (version "0.9.5")
   (source (origin
            (method url-fetch)
            (uri (string-append
                  "mirror://gnu/libunistring/libunistring-"
                  version ".tar.gz"))
            (sha256
             (base32
              "05va4x47ik006nd13grwm276gfxb8igsj63k37vvwl3q8rr0g30s"))))
   (propagated-inputs '())                  ; FIXME: add libiconv when !glibc
   (build-system gnu-build-system)
   (arguments
    ;; Work around parallel build issue whereby C files may be compiled before
    ;; config.h is built: see <http://hydra.gnu.org/build/59381/nixlog/2/raw> and
    ;; <http://lists.openembedded.org/pipermail/openembedded-core/2012-April/059850.html>.
    '(#:parallel-build? #f))
   (synopsis "C library for manipulating Unicode strings")
   (description
    "GNU libunistring is a library providing functions to manipulate
Unicode strings and for manipulating C strings according to the Unicode
standard.")
   (home-page "http://www.gnu.org/software/libunistring/")
   (license lgpl3+)))
tscript: Update to 9.50.Marius Bakke 2019-12-05gnu: ghostscript: Incorporate grafted changes.Marius Bakke 2019-09-24gnu: libpaper: Fix aarch64 cross-compilation.Mathieu Othacehe 2019-09-06Merge branch 'master' into core-updatesMark H Weaver 2019-09-04gnu: ghostscript: Keep the replacement private.Ludovic Courtès 2019-08-29Merge branch 'master' into core-updatesMark H Weaver 2019-08-25gnu: ghostscript: Replace with the "fixed" Ghostscript.Ludovic Courtès 2019-08-25gnu: ghostscript: Add a new variant that depends on Freetype.Ludovic Courtès 2019-06-16gnu: ghostscript: Update to 9.27.Marius Bakke 2019-05-02gnu: lcms: Incorporate grafted changes.Marius Bakke 2019-04-07gnu: lcms: Fix CVE-2018-16435.Efraim Flashner 2018-12-12gnu: ghostscript: Update to 9.26.Marius Bakke 2018-09-09gnu: ghostscript: Remove graft for 9.24.Marius Bakke 2018-09-09Merge branch 'master' into core-updatesMarius Bakke 2018-09-09gnu: ghostscript: Update replacement to 9.24 [security fixes].Marius Bakke 2018-07-24gnu: ghostscript: Incorporate grafted changes.Marius Bakke 2018-07-24Merge branch 'master' into core-updatesMarius Bakke 2018-07-17gnu: ghostscript: Fix CVE-2018-10194.Leo Famulari 2018-07-15gnu: lcms: Use libjpeg.Efraim Flashner 2018-04-02gnu: ghostscript: Update to 9.23.Marius Bakke 2018-03-23gnu: ijs: Use invoke.Mark H Weaver 2018-03-23gnu: ghostscript: Use invoke.Mark H Weaver 2018-03-17gnu: gs-fonts: Return #t from install phase.Mark H Weaver 2018-03-16gnu: All snippets report errors using exceptions, else return #t.Mark H Weaver 2018-03-14Merge branch 'master' into core-updatesRicardo Wurmus 2018-02-26gnu: Use HTTPS for supported freedesktop.org home pages.Tobias Geerinckx-Rice 2018-02-20gnu: lcms: Update to 2.9.Tobias Geerinckx-Rice 2017-12-07Merge branch 'master' into core-updatesMarius Bakke 2017-12-05gnu: ghostscript-with-cups: Turn into a public variable.Ludovic Courtès 2017-10-22gnu: ghostscript: Remove graft for 9.22.Marius Bakke 2017-10-19gnu: psutils: Use 'modify-phases'.Efraim Flashner 2017-10-10gnu: ghostscript: Replace with 9.22 [security fixes].Leo Famulari