openrussian-cli: mark as broken

openrussian-cli breaks on master previous to this PR with:

> patching sources
> updateAutotoolsGnuConfigScriptsPhase
> building
> build flags: SHELL=/nix/store/xdqlrixlspkks50m9b0mpvag65m3pf2w-bash-5.2-p15/bin/bash LUA=/nix/store/qx7i2wd5clvzislr1ix5j6173kryj1ln-lua-5.3.6-env/bin/lua LUAC=/nix/store/qx7i2wd5clvzislr1ix5j6173kryj1ln-lua-5.3.6-env/bin/luac
> echo "#!/nix/store/qx7i2wd5clvzislr1ix5j6173kryj1ln-lua-5.3.6-env/bin/lua" >openrussian
> /nix/store/qx7i2wd5clvzislr1ix5j6173kryj1ln-lua-5.3.6-env/bin/luac -o - openrussian.lua >>openrussian
> chmod a+x openrussian
> rm -f openrussian-sqlite3.db
> unzip -p openrussian-sql.zip openrussian.sql | awk -f ./mysql2sqlite - | sqlite3 openrussian-sqlite3.db
> awk: ./mysql2sqlite:214: warning: regexp escape sequence `\"' is not a known regexp operator
> memory
> sqlite3 openrussian-sqlite3.db -batch <postprocess.sql
> Parse error near line 21: no such column: '
>   TO bare_inflections SELECT word_id, REPLACE(temp, "'", "") AS bare FROM (  --
>                                       error here ---^
This commit is contained in:
Matthieu Coudron 2023-10-21 22:03:32 +02:00
parent 8b7a6ef57e
commit 7acb6b6b76

View File

@ -55,5 +55,6 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ zane ];
mainProgram = "openrussian";
platforms = platforms.unix;
broken = true;
};
}