Skip to content

Commit

Permalink
icu76: 76.1rc -> 76.1 (#351275)
Browse files Browse the repository at this point in the history
  • Loading branch information
7c6f434c authored Oct 29, 2024
2 parents 806cc48 + 63a86ef commit 807e915
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/icu/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ let
in
{
icu76 = make-icu {
version = "76.1rc";
hash = "sha256-HMY4hRYbF4Dsf1EGx+m0NRsCUA+Q/JGRpdGIgym/A5I=";
version = "76.1";
hash = "sha256-36y0a/5HR0EEcs4+EUS/KKEC/uqk44dbrJtMbPMPTz4=";
};
icu75 = make-icu {
version = "75.1";
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/libraries/icu/make-icu.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ let

pname = "icu4c";

#release = lib.replaceStrings [ "." ] [ "-" ] version;
release = lib.replaceStrings [ "." ] [ "-" ] version;
# To test rc versions of ICU replace the line above with the line below.
release = lib.replaceStrings [ "." ] [ "-" ] (if lib.hasSuffix "rc" version then lib.replaceStrings [ "1" ] [ "" ] version else version);
#release = lib.replaceStrings [ "." ] [ "-" ] (if lib.hasSuffix "rc" version then lib.replaceStrings [ "1" ] [ "" ] version else version);

baseAttrs = {
src = fetchurl {
Expand Down

0 comments on commit 807e915

Please sign in to comment.