1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

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
, pkg-config
, freeglut
, liblapack
, lapack
, libusb1
, openblas
, blas
, zlib
}:
@ -24,9 +24,9 @@ stdenv.mkDerivation rec {
buildInputs = [
freeglut
liblapack
lapack
libusb1
openblas
blas
zlib
];