octave.pkgs.tisean: mark as broken

This commit is contained in:
Doron Behar 2023-03-28 19:37:07 +03:00
parent ffbdb8b3d9
commit 1403166764
2 changed files with 4 additions and 3 deletions

View file

@ -22,5 +22,7 @@ buildOctavePackage rec {
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "Interface to the librsb package implementing the RSB sparse matrix format for fast shared-memory sparse matrix computations";
# Broken since octave>8.x
broken = true;
};
}

View file

@ -1,5 +1,4 @@
{ buildOctavePackage
, stdenv
, lib
, fetchurl
# Octave dependencies
@ -30,7 +29,7 @@ buildOctavePackage rec {
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "Port of TISEAN 3.0.1";
# Some gfortran symbols claimed to be missing
broken = stdenv.isDarwin;
# Broken since octave 8.x update, and wasn't updated since 2021
broken = true;
};
}