qrupdate: Add which to native build inputs

The build won't fail without it, but it's needed according to:
https://sourceforge.net/p/qrupdate/code/HEAD/tree/test/report_results
This commit is contained in:
Doron Behar 2020-09-21 13:21:13 +03:00
parent ed16fb06ce
commit 9c3f7ad85b

View File

@ -3,6 +3,7 @@
, gfortran , gfortran
, blas , blas
, lapack , lapack
, which
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "qrupdate-1.1.2"; name = "qrupdate-1.1.2";
@ -33,6 +34,8 @@ stdenv.mkDerivation {
buildInputs = [ gfortran blas lapack ]; buildInputs = [ gfortran blas lapack ];
nativeBuildInputs = [ which ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Library for fast updating of qr and cholesky decompositions"; description = "Library for fast updating of qr and cholesky decompositions";
homepage = "https://sourceforge.net/projects/qrupdate/"; homepage = "https://sourceforge.net/projects/qrupdate/";