2009-09-19 23:17:11 +01:00
|
|
|
{ fetchurl, stdenv, libiconv }:
|
2009-06-27 22:44:47 +01:00
|
|
|
|
2015-07-10 01:31:06 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-12-04 13:03:44 +00:00
|
|
|
name = "libunistring-${version}";
|
2018-03-02 08:41:29 +00:00
|
|
|
version = "0.9.9";
|
2009-06-27 22:44:47 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/libunistring/${name}.tar.gz";
|
2018-03-02 08:41:29 +00:00
|
|
|
sha256 = "0jm8pr469y7ybb90ll8k1585rciqm8ckzif0laipqhp5z440rsgm";
|
2009-06-27 22:44:47 +01:00
|
|
|
};
|
|
|
|
|
2017-02-20 22:37:53 +00:00
|
|
|
outputs = [ "out" "dev" "info" "doc" ];
|
|
|
|
|
2016-10-12 19:26:43 +01:00
|
|
|
propagatedBuildInputs = stdenv.lib.optional (!stdenv.isLinux) libiconv;
|
2015-07-10 01:31:06 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-libiconv-prefix=${libiconv}"
|
|
|
|
];
|
2009-09-19 23:17:11 +01:00
|
|
|
|
2018-06-07 17:34:46 +01:00
|
|
|
doCheck = true;
|
2017-12-04 22:38:34 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2009-06-27 22:44:47 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.gnu.org/software/libunistring/;
|
|
|
|
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Unicode string library";
|
2009-06-27 22:44:47 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
This library provides functions for manipulating Unicode strings
|
|
|
|
and for manipulating C strings according to the Unicode
|
|
|
|
standard.
|
|
|
|
|
|
|
|
GNU libunistring is for you if your application involves
|
|
|
|
non-trivial text processing, such as upper/lower case
|
|
|
|
conversions, line breaking, operations on words, or more
|
|
|
|
advanced analysis of text. Text provided by the user can, in
|
|
|
|
general, contain characters of all kinds of scripts. The text
|
|
|
|
processing functions provided by this library handle all scripts
|
|
|
|
and all languages.
|
|
|
|
|
|
|
|
libunistring is for you if your application already uses the ISO
|
|
|
|
C / POSIX <ctype.h>, <wctype.h> functions and the text it
|
|
|
|
operates on is provided by the user and can be in any language.
|
|
|
|
|
|
|
|
libunistring is also for you if your application uses Unicode
|
|
|
|
strings as internal in-memory representation.
|
|
|
|
'';
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl3Plus;
|
2009-07-02 23:54:19 +01:00
|
|
|
|
2015-01-13 21:33:24 +00:00
|
|
|
maintainers = [ ];
|
2010-02-12 13:40:53 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2009-06-27 22:44:47 +01:00
|
|
|
};
|
|
|
|
}
|