diff options
author | Jan Nieuwenhuizen <janneke@gnu.org> | 2016-04-25 23:47:50 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-12-07 10:23:17 +0100 |
commit | d788fcd3ba2a780393765013451fcace9bb10800 (patch) | |
tree | b87129b4c9030c1dc153c7780522e8668ceeb6cb /gnu/packages | |
parent | 4dab8c590650af0e78647e6e13fb9ac772e51db7 (diff) | |
download | guix-d788fcd3ba2a780393765013451fcace9bb10800.tar guix-d788fcd3ba2a780393765013451fcace9bb10800.tar.gz |
gnu: libunistring: support mingw: propagate libiconv if needed.
* gnu/packages/libunistring (libunistring): propagated-inputs: add
libiconv-if-needed. Fixes unicode translation in MinGW.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/libunistring.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/libunistring.scm b/gnu/packages/libunistring.scm index f29b7424de..a9779d4ffd 100644 --- a/gnu/packages/libunistring.scm +++ b/gnu/packages/libunistring.scm @@ -1,6 +1,7 @@ ;;; 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> +;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -21,7 +22,8 @@ #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) - #:use-module (guix build-system gnu)) + #:use-module (guix build-system gnu) + #:use-module (gnu packages base)) (define-public libunistring (package @@ -35,7 +37,7 @@ (sha256 (base32 "0ixxmgpgh2v8ifm6hbwsjxl023myk3dfnj7wnvmqjivza31fw9cn")))) - (propagated-inputs '()) ; FIXME: add libiconv when !glibc + (propagated-inputs (libiconv-if-needed)) (build-system gnu-build-system) (arguments ;; Work around parallel build issue whereby C files may be compiled before |