blob: faec805793942da902f07838f586034f39c4e6b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
self: super: with self; rec {
version = "76.1";
src = fetchurl {
url = "https://github.com/unicode-org/icu/releases/download/release-${lib.replaceChars [ "." ] [ "-" ] version}/icu4c-${lib.replaceChars [ "." ] [ "_" ] version}-src.tgz";
hash = "sha256-36y0a/5HR0EEcs4+EUS/KKEC/uqk44dbrJtMbPMPTz4=";
};
sourceRoot = "icu/source";
configureFlags = [
"--build=x86_64-unknown-linux-gnu"
];
}
|