lammps: mark as broken for 32 bit lapack & blas

This commit is contained in:
Doron Behar
2023-06-07 18:09:36 +03:00
parent 66c6053b10
commit 64bed841a9
@@ -84,6 +84,10 @@ stdenv.mkDerivation rec {
homepage = "https://lammps.sandia.gov";
license = licenses.gpl2Plus;
platforms = platforms.linux;
# compiling lammps with 64 bit support blas and lapack might cause runtime
# segfaults. In anycase both blas and lapack should have the same #bits
# support.
broken = (blas.isILP64 && lapack.isILP64);
maintainers = [ maintainers.costrouc maintainers.doronbehar ];
};
}