diff --git a/pkgs/development/libraries/qrupdate/default.nix b/pkgs/development/libraries/qrupdate/default.nix index 33d98a492cd..99fe1289eae 100644 --- a/pkgs/development/libraries/qrupdate/default.nix +++ b/pkgs/development/libraries/qrupdate/default.nix @@ -3,6 +3,7 @@ , gfortran , blas , lapack +, which }: stdenv.mkDerivation { name = "qrupdate-1.1.2"; @@ -33,6 +34,8 @@ stdenv.mkDerivation { buildInputs = [ gfortran blas lapack ]; + nativeBuildInputs = [ which ]; + meta = with stdenv.lib; { description = "Library for fast updating of qr and cholesky decompositions"; homepage = "https://sourceforge.net/projects/qrupdate/";