nixpkgs/pkgs/development/libraries/icu/default.nix
Lluís Batlle i Rossell da11152e6e Updating 'icu' so it builds on mips too
svn path=/nixpkgs/branches/stdenv-updates/; revision=23641
2010-09-05 06:00:26 +00:00

29 lines
627 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "icu4c-4.5.1";
src = fetchurl {
url = http://download.icu-project.org/files/icu4c/4.5.1/icu4c-4_5_1-src.tgz;
sha256 = "1cbjwz99rqy6r3rb3022qlcrfvncvgigpb7n9824jadz9m17lmfm";
};
patchFlags = "-p0";
CFLAGS = "-O0";
CXXFLAGS = "-O0";
postUnpack = "
sourceRoot=\${sourceRoot}/source
echo Source root reset to \${sourceRoot}
";
configureFlags = "--disable-debug";
meta = {
description = "Unicode and globalization support library";
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.all;
};
}