override.nix 319 B

12345678
  1. self: super: with self; rec {
  2. version = "76.1";
  3. src = fetchurl {
  4. url = "https://github.com/unicode-org/icu/releases/download/release-${lib.replaceChars [ "." ] [ "-" ] version}/icu4c-${lib.replaceChars [ "." ] [ "_" ] version}-src.tgz";
  5. hash = "sha256-36y0a/5HR0EEcs4+EUS/KKEC/uqk44dbrJtMbPMPTz4=";
  6. };
  7. }