2014-01-15 13:39:52 +01:00
|
|
|
{ stdenv, fetchurl, fixDarwinDylibNames }:
|
2007-08-08 15:20:18 +02:00
|
|
|
|
2010-09-26 21:40:36 +02:00
|
|
|
let
|
2013-07-30 16:33:46 +02:00
|
|
|
|
2010-09-26 21:40:36 +02:00
|
|
|
pname = "icu4c";
|
2013-12-28 23:28:30 +01:00
|
|
|
version = "52.1";
|
2010-09-26 21:40:36 +02:00
|
|
|
in
|
2007-08-08 15:20:18 +02:00
|
|
|
stdenv.mkDerivation {
|
2010-09-26 21:40:36 +02:00
|
|
|
name = pname + "-" + version;
|
2013-04-01 13:37:15 +02:00
|
|
|
|
2007-08-08 15:20:18 +02:00
|
|
|
src = fetchurl {
|
2010-09-26 21:40:36 +02:00
|
|
|
url = "http://download.icu-project.org/files/${pname}/${version}/${pname}-"
|
|
|
|
+ (stdenv.lib.replaceChars ["."] ["_"] version) + "-src.tgz";
|
2013-11-17 14:08:21 +01:00
|
|
|
sha256 = "14l0kl17nirc34frcybzg0snknaks23abhdxkmsqg3k9sil5wk9g";
|
2007-08-08 15:20:18 +02:00
|
|
|
};
|
2008-07-04 07:53:41 +02:00
|
|
|
|
2014-01-15 13:39:52 +01:00
|
|
|
# FIXME: This fixes dylib references in the dylibs themselves, but
|
|
|
|
# not in the programs in $out/bin.
|
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
|
|
|
|
2013-04-12 01:31:18 +02:00
|
|
|
postUnpack = ''
|
|
|
|
sourceRoot=''${sourceRoot}/source
|
|
|
|
echo Source root reset to ''${sourceRoot}
|
|
|
|
'';
|
2013-04-01 13:37:15 +02:00
|
|
|
|
2008-07-04 07:53:41 +02:00
|
|
|
configureFlags = "--disable-debug";
|
2009-09-29 14:52:47 +02:00
|
|
|
|
2013-04-12 01:31:18 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-09-29 14:52:47 +02:00
|
|
|
meta = {
|
|
|
|
description = "Unicode and globalization support library";
|
2010-09-27 20:15:33 +02:00
|
|
|
homepage = http://site.icu-project.org/;
|
2010-12-13 19:10:21 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin urkud];
|
2009-09-29 14:52:47 +02:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
2007-08-08 15:20:18 +02:00
|
|
|
}
|