blob: 1238b76278bea4dcb69fc4507be337c8d8b553d8 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
self: super: with self; rec {
version = "75.1";
src = fetchurl {
url = "https://github.com/unicode-org/icu/releases/download/release-${lib.replaceChars [ "." ] [ "-" ] version}/icu4c-${lib.replaceChars [ "." ] [ "_" ] version}-src.tgz";
hash = "sha256-y5aN8+TS6H6LEcSaXQHHh70TuVRSgPxmQvgmUnYYyu8=";
};
}
|