libsurvive: depend on generic blas and lapack

It's not necessary to use liblapack or openblas specifically.
This commit is contained in:
Ellie Hermaszewska 2021-11-13 18:55:00 +08:00
parent 8b136f75ca
commit d1ad0cd177
No known key found for this signature in database
GPG key ID: C8116E3A0C1CA76A

View file

@ -3,9 +3,9 @@
, cmake , cmake
, pkg-config , pkg-config
, freeglut , freeglut
, liblapack , lapack
, libusb1 , libusb1
, openblas , blas
, zlib , zlib
}: }:
@ -24,9 +24,9 @@ stdenv.mkDerivation rec {
buildInputs = [ buildInputs = [
freeglut freeglut
liblapack lapack
libusb1 libusb1
openblas blas
zlib zlib
]; ];