octave: mark package as broken if JIT is enabled

This commit is contained in:
Doron Behar
2020-02-22 12:33:58 +02:00
parent b3a20c4feb
commit 2b18e72064
@@ -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;