forked from mirrors/nixpkgs
Properly mark platform support for arpack in relation to its openblas dependency
This commit is contained in:
parent
fb986f553e
commit
9fe10c90fa
|
@ -23,7 +23,9 @@ stdenv.mkDerivation {
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://forge.scilab.org/index.php/p/arpack-ng/";
|
homepage = "http://forge.scilab.org/index.php/p/arpack-ng/";
|
||||||
description = "A collection of Fortran77 subroutines to solve large scale eigenvalue problems";
|
description = "A collection of Fortran77 subroutines to solve large scale eigenvalue problems";
|
||||||
platforms = stdenv.lib.platforms.all;
|
# Looks like OpenBLAS is not that easy to build
|
||||||
|
# there is a sgemm_itcopy undefined reference on 32-bit, for example
|
||||||
|
platforms = ["x86_64-linux"];
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = stdenv.lib.licenses.bsd3;
|
||||||
maintainers = [ stdenv.lib.maintainers.ttuegel ];
|
maintainers = [ stdenv.lib.maintainers.ttuegel ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue