From ab3e98d6b72ccf09802804ee85387fdbb3db14a6 Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Mon, 21 Oct 2024 10:06:24 +0200 Subject: [PATCH] icu: temporary change to test rc version --- pkgs/development/libraries/icu/make-icu.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/icu/make-icu.nix b/pkgs/development/libraries/icu/make-icu.nix index d7fe46041607..7e137003b030 100644 --- a/pkgs/development/libraries/icu/make-icu.nix +++ b/pkgs/development/libraries/icu/make-icu.nix @@ -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 {