mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
icu: 52.1 -> 53.1
This commit is contained in:
parent
58be5387b8
commit
cfbf651294
@ -1,9 +1,8 @@
|
|||||||
{ stdenv, fetchurl, fixDarwinDylibNames }:
|
{ stdenv, fetchurl, fixDarwinDylibNames }:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
pname = "icu4c";
|
pname = "icu4c";
|
||||||
version = "52.1";
|
version = "53.1";
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = pname + "-" + version;
|
name = pname + "-" + version;
|
||||||
@ -11,7 +10,7 @@ stdenv.mkDerivation {
|
|||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://download.icu-project.org/files/${pname}/${version}/${pname}-"
|
url = "http://download.icu-project.org/files/${pname}/${version}/${pname}-"
|
||||||
+ (stdenv.lib.replaceChars ["."] ["_"] version) + "-src.tgz";
|
+ (stdenv.lib.replaceChars ["."] ["_"] version) + "-src.tgz";
|
||||||
sha256 = "14l0kl17nirc34frcybzg0snknaks23abhdxkmsqg3k9sil5wk9g";
|
sha256 = "0a4sg9w054640zncb13lhrcjqn7yg1qilwd1mczc4w60maslz9vg";
|
||||||
};
|
};
|
||||||
|
|
||||||
makeFlags = stdenv.lib.optionalString stdenv.isDarwin
|
makeFlags = stdenv.lib.optionalString stdenv.isDarwin
|
||||||
@ -35,10 +34,10 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Unicode and globalization support library";
|
description = "Unicode and globalization support library";
|
||||||
homepage = http://site.icu-project.org/;
|
homepage = http://site.icu-project.org/;
|
||||||
maintainers = with stdenv.lib.maintainers; [raskin urkud];
|
maintainers = with maintainers; [ raskin urkud ];
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user