octave: mark package as broken if JIT is enabled

This commit is contained in:
Doron Behar 2020-02-11 22:49:31 +02:00
parent b3a20c4feb
commit 2b18e72064
1 changed files with 2 additions and 0 deletions

View File

@ -116,6 +116,8 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.gpl3Plus;
maintainers = with stdenv.lib.maintainers; [raskin];
description = "Scientific Pragramming Language";
# https://savannah.gnu.org/bugs/?func=detailitem&item_id=56425 is the best attempt to fix JIT
broken = enableJIT;
platforms = if overridePlatforms == null then
(with stdenv.lib.platforms; linux ++ darwin)
else overridePlatforms;