Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #34181 from markuskowa/arpack-pr

arpack: 3.3.0 -> 3.5.0

authored by Thomas Tuegel and committed by GitHub cac51ef8 9130212d

+5 -3
+5 -3
pkgs/development/libraries/science/math/arpack/default.nix
··· 4 4 with stdenv.lib; 5 5 6 6 let 7 - version = "3.3.0"; 7 + version = "3.5.0"; 8 8 in 9 9 stdenv.mkDerivation { 10 10 name = "arpack-${version}"; 11 11 12 12 src = fetchurl { 13 13 url = "https://github.com/opencollab/arpack-ng/archive/${version}.tar.gz"; 14 - sha256 = "1cz53wqzcf6czmcpfb3vb61xi0rn5bwhinczl65hpmbrglg82ndd"; 14 + sha256 = "0f8jx3fifmj9qdp289zr7r651y1q48k1jya859rqxq62mvis7xsh"; 15 15 }; 16 16 17 17 nativeBuildInputs = [ autoconf automake gettext libtool ]; 18 18 buildInputs = [ gfortran openblas ]; 19 19 20 + doCheck = true; 21 + 20 22 BLAS_LIBS = "-L${openblas}/lib -lopenblas"; 21 23 22 - FFLAGS = optional openblas.blas64 "-fdefault-integer-8"; 24 + INTERFACE64 = optional openblas.blas64 "1"; 23 25 24 26 preConfigure = '' 25 27 ./bootstrap