pkg(rime-yuhaostar): Add throw for upstream bump version

This commit is contained in:
ulic-youthlic 2025-07-06 07:25:33 +08:00
parent fc757e6613
commit b677b3366e
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721

View file

@ -7,7 +7,13 @@
in
stdenv.mkDerivation {
pname = "rime-yuhaostar";
version = version;
version =
if version != "v3.8.0"
then
throw ''
Please update
''
else version;
inherit src;
nativeBuildInputs = [unzip];